Skip to main content

ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest

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.

This is copied when set.

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<T> ImplementedBy<T> for dyn ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest

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

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest for ProtocolObject<T>

Implementors§

Source§

impl ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest for ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest

Available on crate feature ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest only.