pub unsafe trait NSPasteboardTypeOwner: NSObjectProtocol {
// Provided methods
fn pasteboard_provideDataForType(
&self,
sender: &NSPasteboard,
type: &NSPasteboardType,
)
where Self: Sized + Message { ... }
fn pasteboardChangedOwner(&self, sender: &NSPasteboard)
where Self: Sized + Message { ... }
}Available on crate feature
NSPasteboard only.Expand description
Provided Methods§
fn pasteboard_provideDataForType( &self, sender: &NSPasteboard, type: &NSPasteboardType, )
fn pasteboardChangedOwner(&self, sender: &NSPasteboard)
Trait Implementations§
Source§impl ProtocolType for dyn NSPasteboardTypeOwner
impl ProtocolType for dyn NSPasteboardTypeOwner
impl<T> ImplementedBy<T> for dyn NSPasteboardTypeOwner
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".