#[repr(C)]
pub struct ICredentialProviderCredential_Vtbl {
Show 18 fields pub base__: IUnknown_Vtbl, pub Advise: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub UnAdvise: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetSelected: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT, pub SetDeselected: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub GetFieldState: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut CREDENTIAL_PROVIDER_FIELD_STATE, _: *mut CREDENTIAL_PROVIDER_FIELD_INTERACTIVE_STATE) -> HRESULT, pub GetStringValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut PWSTR) -> HRESULT, pub GetBitmapValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut HBITMAP) -> HRESULT, pub GetCheckboxValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut BOOL, _: *mut PWSTR) -> HRESULT, pub GetSubmitButtonValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut u32) -> HRESULT, pub GetComboBoxValueCount: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut u32, _: *mut u32) -> HRESULT, pub GetComboBoxValueAt: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32, _: *mut PWSTR) -> HRESULT, pub SetStringValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: PCWSTR) -> HRESULT, pub SetCheckboxValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: BOOL) -> HRESULT, pub SetComboBoxSelectedValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32) -> HRESULT, pub CommandLinkClicked: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub GetSerialization: unsafe extern "system" fn(_: *mut c_void, _: *mut CREDENTIAL_PROVIDER_GET_SERIALIZATION_RESPONSE, _: *mut CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION, _: *mut PWSTR, _: *mut CREDENTIAL_PROVIDER_STATUS_ICON) -> HRESULT, pub ReportResult: unsafe extern "system" fn(_: *mut c_void, _: NTSTATUS, _: NTSTATUS, _: *mut PWSTR, _: *mut CREDENTIAL_PROVIDER_STATUS_ICON) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§Advise: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§UnAdvise: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetSelected: unsafe extern "system" fn(_: *mut c_void, _: *mut BOOL) -> HRESULT§SetDeselected: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§GetFieldState: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut CREDENTIAL_PROVIDER_FIELD_STATE, _: *mut CREDENTIAL_PROVIDER_FIELD_INTERACTIVE_STATE) -> HRESULT§GetStringValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut PWSTR) -> HRESULT§GetBitmapValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut HBITMAP) -> HRESULT§GetCheckboxValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut BOOL, _: *mut PWSTR) -> HRESULT§GetSubmitButtonValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut u32) -> HRESULT§GetComboBoxValueCount: unsafe extern "system" fn(_: *mut c_void, _: u32, _: *mut u32, _: *mut u32) -> HRESULT§GetComboBoxValueAt: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32, _: *mut PWSTR) -> HRESULT§SetStringValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: PCWSTR) -> HRESULT§SetCheckboxValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: BOOL) -> HRESULT§SetComboBoxSelectedValue: unsafe extern "system" fn(_: *mut c_void, _: u32, _: u32) -> HRESULT§CommandLinkClicked: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§GetSerialization: unsafe extern "system" fn(_: *mut c_void, _: *mut CREDENTIAL_PROVIDER_GET_SERIALIZATION_RESPONSE, _: *mut CREDENTIAL_PROVIDER_CREDENTIAL_SERIALIZATION, _: *mut PWSTR, _: *mut CREDENTIAL_PROVIDER_STATUS_ICON) -> HRESULT§ReportResult: unsafe extern "system" fn(_: *mut c_void, _: NTSTATUS, _: NTSTATUS, _: *mut PWSTR, _: *mut CREDENTIAL_PROVIDER_STATUS_ICON) -> HRESULT

Implementations§

§

impl ICredentialProviderCredential_Vtbl

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