pub unsafe trait ASAuthorizationControllerDelegate: NSObjectProtocol {
    // Provided methods
    unsafe fn authorizationController_didCompleteWithAuthorization(
        &self,
        controller: &ASAuthorizationController,
        authorization: &ASAuthorization
    )
       where Self: Sized + Message { ... }
    unsafe fn authorizationController_didCompleteWithError(
        &self,
        controller: &ASAuthorizationController,
        error: &NSError
    )
       where Self: Sized + Message { ... }
    unsafe fn authorizationController_didCompleteWithCustomMethod(
        &self,
        controller: &ASAuthorizationController,
        method: &ASAuthorizationCustomMethod
    )
       where Self: Sized + Message { ... }
}
Available on crate feature ASAuthorizationController only.

Provided Methods§

source

unsafe fn authorizationController_didCompleteWithAuthorization( &self, controller: &ASAuthorizationController, authorization: &ASAuthorization )
where Self: Sized + Message,

Available on crate feature ASAuthorization only.
source

unsafe fn authorizationController_didCompleteWithError( &self, controller: &ASAuthorizationController, error: &NSError )
where Self: Sized + Message,

source

unsafe fn authorizationController_didCompleteWithCustomMethod( &self, controller: &ASAuthorizationController, method: &ASAuthorizationCustomMethod )
where Self: Sized + Message,

Available on crate feature ASAuthorizationCustomMethod only.

Trait Implementations§

source§

impl ProtocolType for dyn ASAuthorizationControllerDelegate

source§

const NAME: &'static str = "ASAuthorizationControllerDelegate"

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 ASAuthorizationControllerDelegate

Implementations on Foreign Types§

source§

impl<T> ASAuthorizationControllerDelegate for ProtocolObject<T>

Implementors§