pub unsafe trait NSURLAuthenticationChallengeSender: NSObjectProtocol {
    // Provided methods
    unsafe fn useCredential_forAuthenticationChallenge(
        &self,
        credential: &NSURLCredential,
        challenge: &NSURLAuthenticationChallenge
    )
       where Self: Sized + Message { ... }
    unsafe fn continueWithoutCredentialForAuthenticationChallenge(
        &self,
        challenge: &NSURLAuthenticationChallenge
    )
       where Self: Sized + Message { ... }
    unsafe fn cancelAuthenticationChallenge(
        &self,
        challenge: &NSURLAuthenticationChallenge
    )
       where Self: Sized + Message { ... }
    unsafe fn performDefaultHandlingForAuthenticationChallenge(
        &self,
        challenge: &NSURLAuthenticationChallenge
    )
       where Self: Sized + Message { ... }
    unsafe fn rejectProtectionSpaceAndContinueWithChallenge(
        &self,
        challenge: &NSURLAuthenticationChallenge
    )
       where Self: Sized + Message { ... }
}
Available on crate feature NSURLAuthenticationChallenge only.

Provided Methods§

source

unsafe fn useCredential_forAuthenticationChallenge( &self, credential: &NSURLCredential, challenge: &NSURLAuthenticationChallenge )
where Self: Sized + Message,

Available on crate feature NSURLCredential only.
source

unsafe fn continueWithoutCredentialForAuthenticationChallenge( &self, challenge: &NSURLAuthenticationChallenge )
where Self: Sized + Message,

source

unsafe fn cancelAuthenticationChallenge( &self, challenge: &NSURLAuthenticationChallenge )
where Self: Sized + Message,

source

unsafe fn performDefaultHandlingForAuthenticationChallenge( &self, challenge: &NSURLAuthenticationChallenge )
where Self: Sized + Message,

source

unsafe fn rejectProtectionSpaceAndContinueWithChallenge( &self, challenge: &NSURLAuthenticationChallenge )
where Self: Sized + Message,

Trait Implementations§

source§

impl ProtocolType for dyn NSURLAuthenticationChallengeSender

source§

const NAME: &'static str = "NSURLAuthenticationChallengeSender"

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 NSURLAuthenticationChallengeSender

Implementations on Foreign Types§

source§

impl<T> NSURLAuthenticationChallengeSender for ProtocolObject<T>

Implementors§