[][src]Struct imaged::sys::Pixel

#[repr(C)]pub struct Pixel {
    pub data: [f32; 4],
}

4-channel floating point pixel

Fields

data: [f32; 4]

Implementations

impl Pixel[src]

pub fn new() -> Pixel[src]

Empty pixel

pub fn rgb(r: f32, g: f32, b: f32) -> Pixel[src]

RGB pixel, 3 channels

pub fn rgba(r: f32, g: f32, b: f32, a: f32) -> Pixel[src]

RGBA pixel, 4 channels

pub fn gray(x: f32) -> Pixel[src]

Gray pixel, 3 channels

pub fn data(&self) -> [f32; 4][src]

Get pixel data

pub fn data_mut(&mut self) -> &mut [f32][src]

Get a mutable reference to the pixel data

Trait Implementations

impl Add<Pixel> for Pixel[src]

type Output = Pixel

The resulting type after applying the + operator.

impl Clone for Pixel[src]

impl Copy for Pixel[src]

impl Debug for Pixel[src]

impl Default for Pixel[src]

impl Div<Pixel> for Pixel[src]

type Output = Pixel

The resulting type after applying the / operator.

impl Mul<Pixel> for Pixel[src]

type Output = Pixel

The resulting type after applying the * operator.

impl PartialEq<Pixel> for Pixel[src]

impl PartialOrd<Pixel> for Pixel[src]

impl StructuralPartialEq for Pixel[src]

impl Sub<Pixel> for Pixel[src]

type Output = Pixel

The resulting type after applying the - operator.

Auto Trait Implementations

impl RefUnwindSafe for Pixel

impl Send for Pixel

impl Sync for Pixel

impl Unpin for Pixel

impl UnwindSafe for Pixel

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.