Struct gfx_hal::format::FormatBits[][src]

pub struct FormatBits {
    pub color: u8,
    pub alpha: u8,
    pub depth: u8,
    pub stencil: u8,
}

Description of the bits distribution of a format.

Fields

color: u8

Number of color bits (summed for R/G/B).

For compressed formats, this value is 0.

alpha: u8

Number of alpha bits.

For compressed formats, this value is 0.

depth: u8

Number of depth bits

stencil: u8

Number of stencil bits

Trait Implementations

impl Clone for FormatBits[src]

impl Copy for FormatBits[src]

impl Debug for FormatBits[src]

impl Eq for FormatBits[src]

impl Hash for FormatBits[src]

impl Ord for FormatBits[src]

impl PartialEq<FormatBits> for FormatBits[src]

impl PartialOrd<FormatBits> for FormatBits[src]

impl StructuralEq for FormatBits[src]

impl StructuralPartialEq for FormatBits[src]

Auto Trait Implementations

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, 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.