Trait image2::PixelMut[][src]

pub trait PixelMut<'a, T: Type, C: Color>: Pixel<'a, T, C> + AsMut<[T]> {
    fn set_from_float<P: Pixel<'a, f64, C>>(&mut self, other: &P) { ... }
fn set_from<P: Pixel<'a, T, C>>(&mut self, other: &P) { ... } }

Provided Methods

Implementations on Foreign Types

impl<'a, T: Type, C: Color> PixelMut<'a, T, C> for &'a mut [T]
[src]

impl<'a, T: Type, C: Color> PixelMut<'a, T, C> for Vec<T>
[src]

impl<'a, T: Type, C: Color> PixelMut<'a, T, C> for &'a mut Vec<T>
[src]

Implementors