pub unsafe trait ASAccountAuthenticationModificationControllerDelegate: NSObjectProtocol {
    // Provided methods
    unsafe fn accountAuthenticationModificationController_didSuccessfullyCompleteRequest_withUserInfo(
        &self,
        controller: &ASAccountAuthenticationModificationController,
        request: &ASAccountAuthenticationModificationRequest,
        user_info: Option<&NSDictionary>
    )
       where Self: Sized + Message { ... }
    unsafe fn accountAuthenticationModificationController_didFailRequest_withError(
        &self,
        controller: &ASAccountAuthenticationModificationController,
        request: &ASAccountAuthenticationModificationRequest,
        error: &NSError
    )
       where Self: Sized + Message { ... }
}
Available on crate feature ASAccountAuthenticationModificationController only.

Provided Methods§

source

unsafe fn accountAuthenticationModificationController_didSuccessfullyCompleteRequest_withUserInfo( &self, controller: &ASAccountAuthenticationModificationController, request: &ASAccountAuthenticationModificationRequest, user_info: Option<&NSDictionary> )
where Self: Sized + Message,

Available on crate feature ASAccountAuthenticationModificationRequest only.
source

unsafe fn accountAuthenticationModificationController_didFailRequest_withError( &self, controller: &ASAccountAuthenticationModificationController, request: &ASAccountAuthenticationModificationRequest, error: &NSError )
where Self: Sized + Message,

Available on crate feature ASAccountAuthenticationModificationRequest only.

Trait Implementations§

source§

impl ProtocolType for dyn ASAccountAuthenticationModificationControllerDelegate

source§

const NAME: &'static str = "ASAccountAuthenticationModificationControllerDelegate"

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 ASAccountAuthenticationModificationControllerDelegate

Implementations on Foreign Types§

source§

impl<T> ASAccountAuthenticationModificationControllerDelegate for ProtocolObject<T>

Implementors§