pub unsafe trait ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest {
    // Provided methods
    unsafe fn clientData(&self) -> Option<Id<ASPublicKeyCredentialClientData>>
       where Self: Sized + Message { ... }
    unsafe fn excludedCredentials(
        &self
    ) -> Option<Id<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.

Provided Methods§

source

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

Available on crate feature ASPublicKeyCredentialClientData only.
source

unsafe fn excludedCredentials( &self ) -> Option<Id<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.
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.
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 features ASAuthorizationRequest and ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest only.