Struct tauri_icns::OSType
source · [−]Expand description
A Macintosh OSType (also known as a ResType), used in ICNS files to identify the type of each icon element.
An OSType is a four-byte identifier used throughout Mac OS. In an ICNS
file, it indicates the type of data stored in an
IconElement
data block. For example, OSType
is32
represents 24-bit color data for a 16x16 icon, while OSType s8mk
represents the 8-bit alpha mask for that same icon.
See the IconType
enum for an easier-to-use
representation of icon data types.
Tuple Fields
0: [u8; 4]
Trait Implementations
sourceimpl Ord for OSType
impl Ord for OSType
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<OSType> for OSType
impl PartialEq<OSType> for OSType
sourceimpl PartialOrd<OSType> for OSType
impl PartialOrd<OSType> for OSType
sourcefn partial_cmp(&self, other: &OSType) -> Option<Ordering>
fn partial_cmp(&self, other: &OSType) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for OSType
impl Eq for OSType
impl StructuralEq for OSType
impl StructuralPartialEq for OSType
Auto Trait Implementations
impl RefUnwindSafe for OSType
impl Send for OSType
impl Sync for OSType
impl Unpin for OSType
impl UnwindSafe for OSType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more