Skip to main content

NSMachPortDelegate

Trait NSMachPortDelegate 

Source
pub unsafe trait NSMachPortDelegate: NSPortDelegate {
    // Provided method
    unsafe fn handleMachMessage(&self, msg: NonNull<c_void>)
       where Self: Sized + Message { ... }
}
Available on crate feature NSPort only.
Expand description

Provided Methods§

Source

unsafe fn handleMachMessage(&self, msg: NonNull<c_void>)
where Self: Sized + Message,

§Safety

msg must be a valid pointer.

Trait Implementations§

Source§

impl<T> ImplementedBy<T> for dyn NSMachPortDelegate

Source§

impl ProtocolType for dyn NSMachPortDelegate

Source§

const NAME: &'static str = "NSMachPortDelegate"

The name of the Objective-C protocol that this type represents. Read more
Source§

fn protocol() -> Option<&'static AnyProtocol>

Get a reference to the Objective-C protocol object that this type represents. Read more

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<T> NSMachPortDelegate for ProtocolObject<T>

Implementors§