pub unsafe trait NSURLConnectionDownloadDelegate: NSURLConnectionDelegate {
    // Provided methods
    unsafe fn connection_didWriteData_totalBytesWritten_expectedTotalBytes(
        &self,
        connection: &NSURLConnection,
        bytes_written: c_longlong,
        total_bytes_written: c_longlong,
        expected_total_bytes: c_longlong
    )
       where Self: Sized + Message { ... }
    unsafe fn connectionDidResumeDownloading_totalBytesWritten_expectedTotalBytes(
        &self,
        connection: &NSURLConnection,
        total_bytes_written: c_longlong,
        expected_total_bytes: c_longlong
    )
       where Self: Sized + Message { ... }
    unsafe fn connectionDidFinishDownloading_destinationURL(
        &self,
        connection: &NSURLConnection,
        destination_url: &NSURL
    )
       where Self: Sized + Message { ... }
}
Available on crate feature NSURLConnection only.

Provided Methods§

source

unsafe fn connection_didWriteData_totalBytesWritten_expectedTotalBytes( &self, connection: &NSURLConnection, bytes_written: c_longlong, total_bytes_written: c_longlong, expected_total_bytes: c_longlong )
where Self: Sized + Message,

source

unsafe fn connectionDidResumeDownloading_totalBytesWritten_expectedTotalBytes( &self, connection: &NSURLConnection, total_bytes_written: c_longlong, expected_total_bytes: c_longlong )
where Self: Sized + Message,

source

unsafe fn connectionDidFinishDownloading_destinationURL( &self, connection: &NSURLConnection, destination_url: &NSURL )
where Self: Sized + Message,

Available on crate feature NSURL only.

Trait Implementations§

source§

impl ProtocolType for dyn NSURLConnectionDownloadDelegate

source§

const NAME: &'static str = "NSURLConnectionDownloadDelegate"

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 NSURLConnectionDownloadDelegate

Implementations on Foreign Types§

source§

impl<T> NSURLConnectionDownloadDelegate for ProtocolObject<T>

Implementors§