#[repr(C)]
pub struct ISettingsItem_Vtbl {
Show 23 fields pub base__: IUnknown_Vtbl, pub GetName: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub GetValue: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT, pub SetValue: unsafe extern "system" fn(_: *mut c_void, _: *const MaybeUninit<VARIANT>) -> HRESULT, pub GetSettingType: unsafe extern "system" fn(_: *mut c_void, _: *mut WcmSettingType) -> HRESULT, pub GetDataType: unsafe extern "system" fn(_: *mut c_void, _: *mut WcmDataType) -> HRESULT, pub GetValueRaw: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut u8, _: *mut u32) -> HRESULT, pub SetValueRaw: unsafe extern "system" fn(_: *mut c_void, _: i32, _: *const u8, _: u32) -> HRESULT, pub HasChild: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT, pub Children: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub GetChild: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut *mut c_void) -> HRESULT, pub GetSettingByPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut *mut c_void) -> HRESULT, pub CreateSettingByPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut *mut c_void) -> HRESULT, pub RemoveSettingByPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub GetListKeyInformation: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>, _: *mut WcmDataType) -> HRESULT, pub CreateListElement: unsafe extern "system" fn(_: *mut c_void, _: *const MaybeUninit<VARIANT>, _: *mut *mut c_void) -> HRESULT, pub RemoveListElement: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT, pub Attributes: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub GetAttribute: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut MaybeUninit<VARIANT>) -> HRESULT, pub GetPath: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT, pub GetRestrictionFacets: unsafe extern "system" fn(_: *mut c_void, _: *mut WcmRestrictionFacets) -> HRESULT, pub GetRestriction: unsafe extern "system" fn(_: *mut c_void, _: WcmRestrictionFacets, _: *mut MaybeUninit<VARIANT>) -> HRESULT, pub GetKeyValue: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§GetName: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§GetValue: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT§SetValue: unsafe extern "system" fn(_: *mut c_void, _: *const MaybeUninit<VARIANT>) -> HRESULT§GetSettingType: unsafe extern "system" fn(_: *mut c_void, _: *mut WcmSettingType) -> HRESULT§GetDataType: unsafe extern "system" fn(_: *mut c_void, _: *mut WcmDataType) -> HRESULT§GetValueRaw: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut u8, _: *mut u32) -> HRESULT§SetValueRaw: unsafe extern "system" fn(_: *mut c_void, _: i32, _: *const u8, _: u32) -> HRESULT§HasChild: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT§Children: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§GetChild: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut *mut c_void) -> HRESULT§GetSettingByPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut *mut c_void) -> HRESULT§CreateSettingByPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut *mut c_void) -> HRESULT§RemoveSettingByPath: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§GetListKeyInformation: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>, _: *mut WcmDataType) -> HRESULT§CreateListElement: unsafe extern "system" fn(_: *mut c_void, _: *const MaybeUninit<VARIANT>, _: *mut *mut c_void) -> HRESULT§RemoveListElement: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR) -> HRESULT§Attributes: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§GetAttribute: unsafe extern "system" fn(_: *mut c_void, _: PCWSTR, _: *mut MaybeUninit<VARIANT>) -> HRESULT§GetPath: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<BSTR>) -> HRESULT§GetRestrictionFacets: unsafe extern "system" fn(_: *mut c_void, _: *mut WcmRestrictionFacets) -> HRESULT§GetRestriction: unsafe extern "system" fn(_: *mut c_void, _: WcmRestrictionFacets, _: *mut MaybeUninit<VARIANT>) -> HRESULT§GetKeyValue: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<VARIANT>) -> HRESULT

Implementations§

§

impl ISettingsItem_Vtbl

pub const fn new<Identity, const OFFSET: isize>() -> ISettingsItem_Vtbl
where Identity: ISettingsItem_Impl + IUnknownImpl,

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.