pub trait NSDockTile: Sized {
// Required methods
unsafe fn showsApplicatinBadge(self) -> BOOL;
unsafe fn setShowsApplicatinBadge_(self, value: BOOL) -> id;
unsafe fn badgeLabel(self) -> id;
unsafe fn setBadgeLabel_(self, label: id) -> id;
}๐Deprecated: use the objc2-app-kit crate instead
Required Methodsยง
unsafe fn showsApplicatinBadge(self) -> BOOL
๐Deprecated: use the objc2-app-kit crate instead
unsafe fn setShowsApplicatinBadge_(self, value: BOOL) -> id
๐Deprecated: use the objc2-app-kit crate instead
unsafe fn badgeLabel(self) -> id
๐Deprecated: use the objc2-app-kit crate instead
unsafe fn setBadgeLabel_(self, label: id) -> id
๐Deprecated: use the objc2-app-kit 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.