pub unsafe trait ASWebAuthenticationSessionRequestDelegate: NSObjectProtocol {
// Provided methods
unsafe fn authenticationSessionRequest_didCompleteWithCallbackURL(
&self,
authentication_session_request: &ASWebAuthenticationSessionRequest,
callback_url: &NSURL,
)
where Self: Sized + Message { ... }
unsafe fn authenticationSessionRequest_didCancelWithError(
&self,
authentication_session_request: &ASWebAuthenticationSessionRequest,
error: &NSError,
)
where Self: Sized + Message { ... }
}Available on crate feature
ASWebAuthenticationSessionRequest only.Expand description
Provided Methods§
unsafe fn authenticationSessionRequest_didCompleteWithCallbackURL( &self, authentication_session_request: &ASWebAuthenticationSessionRequest, callback_url: &NSURL, )
unsafe fn authenticationSessionRequest_didCancelWithError( &self, authentication_session_request: &ASWebAuthenticationSessionRequest, error: &NSError, )
Trait Implementations§
impl<T> ImplementedBy<T> for dyn ASWebAuthenticationSessionRequestDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".