#[repr(C)]
pub struct ICredentialPickerOptions_Vtbl {
Show 21 fields pub base__: IInspectable_Vtbl, pub SetCaption: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT, pub Caption: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT, pub SetMessage: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT, pub Message: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT, pub SetErrorCode: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT, pub ErrorCode: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT, pub SetTargetName: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT, pub TargetName: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT, pub SetAuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: AuthenticationProtocol) -> HRESULT, pub AuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: *mut AuthenticationProtocol) -> HRESULT, pub SetCustomAuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT, pub CustomAuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT, pub SetPreviousCredential: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub PreviousCredential: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub SetAlwaysDisplayDialog: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT, pub AlwaysDisplayDialog: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT, pub SetCallerSavesCredential: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT, pub CallerSavesCredential: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT, pub SetCredentialSaveOption: unsafe extern "system" fn(_: *mut c_void, _: CredentialSaveOption) -> HRESULT, pub CredentialSaveOption: unsafe extern "system" fn(_: *mut c_void, _: *mut CredentialSaveOption) -> HRESULT,
}

Fields§

§base__: IInspectable_Vtbl§SetCaption: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT§Caption: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT§SetMessage: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT§Message: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT§SetErrorCode: unsafe extern "system" fn(_: *mut c_void, _: u32) -> HRESULT§ErrorCode: unsafe extern "system" fn(_: *mut c_void, _: *mut u32) -> HRESULT§SetTargetName: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT§TargetName: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT§SetAuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: AuthenticationProtocol) -> HRESULT§AuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: *mut AuthenticationProtocol) -> HRESULT§SetCustomAuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: MaybeUninit<HSTRING>) -> HRESULT§CustomAuthenticationProtocol: unsafe extern "system" fn(_: *mut c_void, _: *mut MaybeUninit<HSTRING>) -> HRESULT§SetPreviousCredential: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§PreviousCredential: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§SetAlwaysDisplayDialog: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT§AlwaysDisplayDialog: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT§SetCallerSavesCredential: unsafe extern "system" fn(_: *mut c_void, _: bool) -> HRESULT§CallerSavesCredential: unsafe extern "system" fn(_: *mut c_void, _: *mut bool) -> HRESULT§SetCredentialSaveOption: unsafe extern "system" fn(_: *mut c_void, _: CredentialSaveOption) -> HRESULT§CredentialSaveOption: unsafe extern "system" fn(_: *mut c_void, _: *mut CredentialSaveOption) -> HRESULT

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.