Struct image::Bgra[][src]

#[repr(C)]pub struct Bgra<T: Primitive>(pub [T; 4]);

BGR colors + alpha channel

Trait Implementations

impl<T: Clone + Primitive> Clone for Bgra<T>[src]

impl<T: Copy + Primitive> Copy for Bgra<T>[src]

impl<T: Debug + Primitive> Debug for Bgra<T>[src]

impl<T: Eq + Primitive> Eq for Bgra<T>[src]

impl<T: Primitive + 'static> From<[T; 4]> for Bgra<T>[src]

impl<T: Hash + Primitive> Hash for Bgra<T>[src]

impl<T: Primitive> Index<usize> for Bgra<T>[src]

type Output = T

The returned type after indexing.

impl<T: Primitive> IndexMut<usize> for Bgra<T>[src]

impl<T: PartialEq + Primitive> PartialEq<Bgra<T>> for Bgra<T>[src]

impl<T: Primitive + 'static> Pixel for Bgra<T>[src]

type Subpixel = T

The underlying subpixel type.

impl<T: Primitive> StructuralEq for Bgra<T>[src]

impl<T: Primitive> StructuralPartialEq for Bgra<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Bgra<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Bgra<T> where
    T: Send
[src]

impl<T> Sync for Bgra<T> where
    T: Sync
[src]

impl<T> Unpin for Bgra<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Bgra<T> where
    T: UnwindSafe
[src]

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> Pointable for T

type Init = T

The type for initializers.

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.