Struct windows::Win32::UI::Shell::ISyncMgrControl
pub struct ISyncMgrControl(/* private fields */);
Implementations§
§impl ISyncMgrControl
impl ISyncMgrControl
pub unsafe fn StartHandlerSync<P0, P1, P2, P3>(
&self,
pszhandlerid: P0,
hwndowner: P1,
punk: P2,
nsynccontrolflags: SYNCMGR_SYNC_CONTROL_FLAGS,
presult: P3,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<HWND>,
P2: Param<IUnknown>,
P3: Param<ISyncMgrSyncResult>,
pub unsafe fn StartItemSync<P0, P1, P2, P3>(
&self,
pszhandlerid: P0,
ppszitemids: &[PCWSTR],
hwndowner: P1,
punk: P2,
nsynccontrolflags: SYNCMGR_SYNC_CONTROL_FLAGS,
presult: P3,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<HWND>,
P2: Param<IUnknown>,
P3: Param<ISyncMgrSyncResult>,
pub unsafe fn StartSyncAll<P0>(&self, hwndowner: P0) -> Result<()>where
P0: Param<HWND>,
pub unsafe fn StopHandlerSync<P0>(&self, pszhandlerid: P0) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn StopItemSync<P0>(
&self,
pszhandlerid: P0,
ppszitemids: &[PCWSTR],
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn StopSyncAll(&self) -> Result<()>
pub unsafe fn UpdateHandlerCollection( &self, rclsidcollectionid: *const GUID, ncontrolflags: SYNCMGR_CONTROL_FLAGS, ) -> Result<()>
pub unsafe fn UpdateHandler<P0>(
&self,
pszhandlerid: P0,
ncontrolflags: SYNCMGR_CONTROL_FLAGS,
) -> Result<()>where
P0: Param<PCWSTR>,
pub unsafe fn UpdateItem<P0, P1>(
&self,
pszhandlerid: P0,
pszitemid: P1,
ncontrolflags: SYNCMGR_CONTROL_FLAGS,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<PCWSTR>,
pub unsafe fn UpdateEvents<P0, P1>(
&self,
pszhandlerid: P0,
pszitemid: P1,
ncontrolflags: SYNCMGR_CONTROL_FLAGS,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<PCWSTR>,
pub unsafe fn UpdateConflict<P0, P1, P2>(
&self,
pszhandlerid: P0,
pszitemid: P1,
pconflict: P2,
nreason: SYNCMGR_UPDATE_REASON,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<PCWSTR>,
P2: Param<ISyncMgrConflict>,
pub unsafe fn UpdateConflicts<P0, P1>(
&self,
pszhandlerid: P0,
pszitemid: P1,
ncontrolflags: SYNCMGR_CONTROL_FLAGS,
) -> Result<()>where
P0: Param<PCWSTR>,
P1: Param<PCWSTR>,
pub unsafe fn ActivateHandler<P0, P1, P2>( &self, factivate: P0, pszhandlerid: P1, hwndowner: P2, ncontrolflags: SYNCMGR_CONTROL_FLAGS, ) -> Result<()>
pub unsafe fn EnableHandler<P0, P1, P2>( &self, fenable: P0, pszhandlerid: P1, hwndowner: P2, ncontrolflags: SYNCMGR_CONTROL_FLAGS, ) -> Result<()>
pub unsafe fn EnableItem<P0, P1, P2, P3>( &self, fenable: P0, pszhandlerid: P1, pszitemid: P2, hwndowner: P3, ncontrolflags: SYNCMGR_CONTROL_FLAGS, ) -> Result<()>
Trait Implementations§
§impl CanInto<IUnknown> for ISyncMgrControl
impl CanInto<IUnknown> for ISyncMgrControl
§impl Clone for ISyncMgrControl
impl Clone for ISyncMgrControl
§fn clone(&self) -> ISyncMgrControl
fn clone(&self) -> ISyncMgrControl
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for ISyncMgrControl
impl Debug for ISyncMgrControl
§impl Deref for ISyncMgrControl
impl Deref for ISyncMgrControl
§impl From<&ISyncMgrControl> for &IUnknown
impl From<&ISyncMgrControl> for &IUnknown
§fn from(value: &ISyncMgrControl) -> Self
fn from(value: &ISyncMgrControl) -> Self
Converts to this type from the input type.
§impl From<ISyncMgrControl> for IUnknown
impl From<ISyncMgrControl> for IUnknown
§fn from(value: ISyncMgrControl) -> Self
fn from(value: ISyncMgrControl) -> Self
Converts to this type from the input type.
§impl Interface for ISyncMgrControl
impl Interface for ISyncMgrControl
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for ISyncMgrControl
impl PartialEq for ISyncMgrControl
§fn eq(&self, other: &ISyncMgrControl) -> bool
fn eq(&self, other: &ISyncMgrControl) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ISyncMgrControl
impl StructuralPartialEq for ISyncMgrControl
Auto Trait Implementations§
impl Freeze for ISyncMgrControl
impl RefUnwindSafe for ISyncMgrControl
impl !Send for ISyncMgrControl
impl !Sync for ISyncMgrControl
impl Unpin for ISyncMgrControl
impl UnwindSafe for ISyncMgrControl
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)