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