pub unsafe trait MLWritable: NSObjectProtocol {
// Provided method
unsafe fn writeToURL_error(
&self,
url: &NSURL,
) -> Result<(), Retained<NSError>>
where Self: Sized + Message { ... }
}Available on crate feature
MLWritable only.Expand description
Provided Methods§
Trait Implementations§
impl<T> ImplementedBy<T> for dyn MLWritable
Source§impl ProtocolType for dyn MLWritable
impl ProtocolType for dyn MLWritable
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".