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§
Source§impl ProtocolType for dyn MLWritable
impl ProtocolType for dyn MLWritable
impl<T> ImplementedBy<T> for dyn MLWritable
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".