pub trait NSRunLoop: Sized {
// Required methods
unsafe fn currentRunLoop() -> Self;
unsafe fn performSelector_target_argument_order_modes_(
self,
aSelector: SEL,
target: id,
anArgument: id,
order: NSUInteger,
modes: id,
);
}
๐Deprecated: use the objc2-foundation crate instead
Required Methodsยง
unsafe fn currentRunLoop() -> Self
๐Deprecated: use the objc2-foundation crate instead
unsafe fn performSelector_target_argument_order_modes_( self, aSelector: SEL, target: id, anArgument: id, order: NSUInteger, modes: id, )
๐Deprecated: use the objc2-foundation crate instead
Dyn Compatibilityยง
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.