[][src]Struct icns::OSType

pub struct OSType(pub [u8; 4]);

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.

Trait Implementations

impl Clone for OSType[src]

impl Copy for OSType[src]

impl Debug for OSType[src]

impl Display for OSType[src]

impl Eq for OSType[src]

impl FromStr for OSType[src]

type Err = String

The associated error which can be returned from parsing.

impl Hash for OSType[src]

impl Ord for OSType[src]

impl PartialEq<OSType> for OSType[src]

impl PartialOrd<OSType> for OSType[src]

impl StructuralEq for OSType[src]

impl StructuralPartialEq for OSType[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.