[][src]Struct bmp::Pixel

pub struct Pixel {
    pub r: u8,
    pub g: u8,
    pub b: u8,
}

The pixel data used in the Image.

It has three values for the red, blue and green color channels, respectively.

Fields

r: u8g: u8b: u8

Methods

impl Pixel[src]

pub fn new(r: u8, g: u8, b: u8) -> Pixel[src]

Creates a new Pixel.

Trait Implementations

impl Clone for Pixel[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Pixel> for Pixel[src]

impl Copy for Pixel[src]

impl Eq for Pixel[src]

impl Display for Pixel[src]

Displays the rgb values as an rgb color triple

impl Debug for Pixel[src]

impl LowerHex for Pixel[src]

Displays the rgb values as a lower-case 24-bit hexadecimal number

impl UpperHex for Pixel[src]

Displays the rgb values as an upper-case 24-bit hexadecimal number

Auto Trait Implementations

impl Sync for Pixel

impl Send for Pixel

impl Unpin for Pixel

impl RefUnwindSafe for Pixel

impl UnwindSafe for Pixel

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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