#[repr(C)]
pub struct IConfigurationDataCollector_Vtbl {
Show 19 fields pub base__: IDataCollector_Vtbl, pub FileMaxCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub SetFileMaxCount: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub FileMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub SetFileMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub FileMaxTotalSize: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub SetFileMaxTotalSize: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub Files: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub SetFiles: unsafe extern "system" fn(_: *mut c_void, _: *const SAFEARRAY) -> HRESULT, pub ManagementQueries: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub SetManagementQueries: unsafe extern "system" fn(_: *mut c_void, _: *const SAFEARRAY) -> HRESULT, pub QueryNetworkAdapters: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT, pub SetQueryNetworkAdapters: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT, pub RegistryKeys: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT, pub SetRegistryKeys: unsafe extern "system" fn(_: *mut c_void, _: *const SAFEARRAY) -> HRESULT, pub RegistryMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub SetRegistryMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub SystemStateFile: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub SetSystemStateFile: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT,
}

Fields§

§base__: IDataCollector_Vtbl§FileMaxCount: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetFileMaxCount: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§FileMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetFileMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§FileMaxTotalSize: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetFileMaxTotalSize: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§Files: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§SetFiles: unsafe extern "system" fn(_: *mut c_void, _: *const SAFEARRAY) -> HRESULT§ManagementQueries: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§SetManagementQueries: unsafe extern "system" fn(_: *mut c_void, _: *const SAFEARRAY) -> HRESULT§QueryNetworkAdapters: unsafe extern "system" fn(_: *mut c_void, _: *mut VARIANT_BOOL) -> HRESULT§SetQueryNetworkAdapters: unsafe extern "system" fn(_: *mut c_void, _: VARIANT_BOOL) -> HRESULT§RegistryKeys: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut SAFEARRAY) -> HRESULT§SetRegistryKeys: unsafe extern "system" fn(_: *mut c_void, _: *const SAFEARRAY) -> HRESULT§RegistryMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetRegistryMaxRecursiveDepth: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§SystemStateFile: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§SetSystemStateFile: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<BSTR>) -> HRESULT

Implementations§

§

impl IConfigurationDataCollector_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IConfigurationDataCollector_Impl, const OFFSET: isize>( ) -> IConfigurationDataCollector_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.