Trait ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest

Source
pub unsafe trait ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest {
    // Provided methods
    unsafe fn clientData(
        &self,
    ) -> Option<Retained<ASPublicKeyCredentialClientData>>
       where Self: Sized + Message { ... }
    unsafe fn excludedCredentials(
        &self,
    ) -> Option<Retained<NSArray<ASAuthorizationPlatformPublicKeyCredentialDescriptor>>>
       where Self: Sized + Message { ... }
    unsafe fn setExcludedCredentials(
        &self,
        excluded_credentials: Option<&NSArray<ASAuthorizationPlatformPublicKeyCredentialDescriptor>>,
    )
       where Self: Sized + Message { ... }
    unsafe fn shouldShowHybridTransport(&self) -> bool
       where Self: Sized + Message { ... }
    unsafe fn setShouldShowHybridTransport(
        &self,
        should_show_hybrid_transport: bool,
    )
       where Self: Sized + Message { ... }
}
Available on crate feature ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest only.
Expand description

Provided Methods§

Source

unsafe fn clientData(&self) -> Option<Retained<ASPublicKeyCredentialClientData>>
where Self: Sized + Message,

Available on crate feature ASPublicKeyCredentialClientData only.
Source

unsafe fn excludedCredentials( &self, ) -> Option<Retained<NSArray<ASAuthorizationPlatformPublicKeyCredentialDescriptor>>>
where Self: Sized + Message,

Available on crate feature ASAuthorizationPlatformPublicKeyCredentialDescriptor only.
Source

unsafe fn setExcludedCredentials( &self, excluded_credentials: Option<&NSArray<ASAuthorizationPlatformPublicKeyCredentialDescriptor>>, )
where Self: Sized + Message,

Available on crate feature ASAuthorizationPlatformPublicKeyCredentialDescriptor only.

Setter for excludedCredentials.

Source

unsafe fn shouldShowHybridTransport(&self) -> bool
where Self: Sized + Message,

Source

unsafe fn setShouldShowHybridTransport( &self, should_show_hybrid_transport: bool, )
where Self: Sized + Message,

Trait Implementations§

Source§

impl ProtocolType for dyn ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest

Source§

const NAME: &'static str = "ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more
Source§

impl<T> ImplementedBy<T> for dyn ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest

Implementations on Foreign Types§

Source§

impl<T> ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest for ProtocolObject<T>

Implementors§

Source§

impl ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest for ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest

Available on crate feature ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest only.