#[repr(C)]
pub struct ISyncProviderRegistration_Vtbl {
Show 17 fields pub base__: IUnknown_Vtbl, pub CreateSyncProviderConfigUIRegistrationInstance: unsafe extern "system" fn(_: *mut c_void, _: *const SyncProviderConfigUIConfiguration, _: *mut *mut c_void) -> HRESULT, pub UnregisterSyncProviderConfigUI: unsafe extern "system" fn(_: *mut c_void, _: *const GUID) -> HRESULT, pub EnumerateSyncProviderConfigUIs: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT, pub CreateSyncProviderRegistrationInstance: unsafe extern "system" fn(_: *mut c_void, _: *const SyncProviderConfiguration, _: *mut *mut c_void) -> HRESULT, pub UnregisterSyncProvider: unsafe extern "system" fn(_: *mut c_void, _: *const GUID) -> HRESULT, pub GetSyncProviderConfigUIInfoforProvider: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut *mut c_void) -> HRESULT, pub EnumerateSyncProviders: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: u32, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT, pub GetSyncProviderInfo: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut *mut c_void) -> HRESULT, pub GetSyncProviderFromInstanceId: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT, pub GetSyncProviderConfigUIInfo: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut *mut c_void) -> HRESULT, pub GetSyncProviderConfigUIFromInstanceId: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT, pub GetSyncProviderState: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut u32) -> HRESULT, pub SetSyncProviderState: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: u32) -> HRESULT, pub RegisterForEvent: unsafe extern "system" fn(_: *mut c_void, _: *mut HANDLE) -> HRESULT, pub RevokeEvent: unsafe extern "system" fn(_: *mut c_void, _: HANDLE) -> HRESULT, pub GetChange: unsafe extern "system" fn(_: *mut c_void, _: HANDLE, _: *mut *mut c_void) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§CreateSyncProviderConfigUIRegistrationInstance: unsafe extern "system" fn(_: *mut c_void, _: *const SyncProviderConfigUIConfiguration, _: *mut *mut c_void) -> HRESULT§UnregisterSyncProviderConfigUI: unsafe extern "system" fn(_: *mut c_void, _: *const GUID) -> HRESULT§EnumerateSyncProviderConfigUIs: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT§CreateSyncProviderRegistrationInstance: unsafe extern "system" fn(_: *mut c_void, _: *const SyncProviderConfiguration, _: *mut *mut c_void) -> HRESULT§UnregisterSyncProvider: unsafe extern "system" fn(_: *mut c_void, _: *const GUID) -> HRESULT§GetSyncProviderConfigUIInfoforProvider: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut *mut c_void) -> HRESULT§EnumerateSyncProviders: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: u32, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT§GetSyncProviderInfo: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut *mut c_void) -> HRESULT§GetSyncProviderFromInstanceId: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT§GetSyncProviderConfigUIInfo: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut *mut c_void) -> HRESULT§GetSyncProviderConfigUIFromInstanceId: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: *mut *mut c_void) -> HRESULT§GetSyncProviderState: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: *mut u32) -> HRESULT§SetSyncProviderState: unsafe extern "system" fn(_: *mut c_void, _: *const GUID, _: u32, _: u32) -> HRESULT§RegisterForEvent: unsafe extern "system" fn(_: *mut c_void, _: *mut HANDLE) -> HRESULT§RevokeEvent: unsafe extern "system" fn(_: *mut c_void, _: HANDLE) -> HRESULT§GetChange: unsafe extern "system" fn(_: *mut c_void, _: HANDLE, _: *mut *mut c_void) -> HRESULT

Implementations§

§

impl ISyncProviderRegistration_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: ISyncProviderRegistration_Impl, const OFFSET: isize>( ) -> ISyncProviderRegistration_Vtbl

pub fn matches(iid: &GUID) -> bool

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.