pub unsafe trait ASCredentialIdentity: NSObjectProtocol {
    // Provided methods
    unsafe fn serviceIdentifier(&self) -> Id<ASCredentialServiceIdentifier>
       where Self: Sized + Message { ... }
    unsafe fn user(&self) -> Id<NSString>
       where Self: Sized + Message { ... }
    unsafe fn recordIdentifier(&self) -> Option<Id<NSString>>
       where Self: Sized + Message { ... }
    unsafe fn rank(&self) -> NSInteger
       where Self: Sized + Message { ... }
    unsafe fn setRank(&self, rank: NSInteger)
       where Self: Sized + Message { ... }
}
Available on crate feature ASCredentialIdentity only.

Provided Methods§

source

unsafe fn serviceIdentifier(&self) -> Id<ASCredentialServiceIdentifier>
where Self: Sized + Message,

Available on crate feature ASCredentialServiceIdentifier only.
source

unsafe fn user(&self) -> Id<NSString>
where Self: Sized + Message,

source

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

source

unsafe fn rank(&self) -> NSInteger
where Self: Sized + Message,

source

unsafe fn setRank(&self, rank: NSInteger)
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn ASCredentialIdentity

source§

const NAME: &'static str = "ASCredentialIdentity"

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 ASCredentialIdentity

Implementations on Foreign Types§

source§

impl<T> ASCredentialIdentity for ProtocolObject<T>

Implementors§

source§

impl ASCredentialIdentity for ASPasskeyCredentialIdentity

Available on crate feature ASPasskeyCredentialIdentity only.
source§

impl ASCredentialIdentity for ASPasswordCredentialIdentity

Available on crate feature ASPasswordCredentialIdentity only.