pub unsafe trait SKRequestDelegate: NSObjectProtocol {
// Provided methods
unsafe fn requestDidFinish(&self, request: &SKRequest)
where Self: Sized + Message { ... }
unsafe fn request_didFailWithError(
&self,
request: &SKRequest,
error: &NSError,
)
where Self: Sized + Message { ... }
}👎Deprecated:
No longer supported
Available on crate feature
SKRequest only.Expand description
Provided Methods§
unsafe fn requestDidFinish(&self, request: &SKRequest)
👎Deprecated:
No longer supported
unsafe fn request_didFailWithError(&self, request: &SKRequest, error: &NSError)
👎Deprecated:
No longer supported
Trait Implementations§
impl<T> ImplementedBy<T> for dyn SKRequestDelegate
Source§impl ProtocolType for dyn SKRequestDelegate
impl ProtocolType for dyn SKRequestDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".