Trait image::ConvertBuffer 
            
                [−]
            
        [src]
pub trait ConvertBuffer<T> {
    fn convert(&self) -> T;
}Provides color conversions for whole image buffers.
Required Methods
fn convert(&self) -> T
Converts self to a buffer of type T
A generic impementation is provided to convert any image buffer to a image buffer
based on a Vec<T>.
Implementors
impl<'a, 'b, Container, FromType: Pixel + 'static, ToType: Pixel + 'static> ConvertBuffer<ImageBuffer<ToType, Vec<ToType::Subpixel>>> for ImageBuffer<FromType, Container> where Container: Deref<Target=[FromType::Subpixel]>, ToType: FromColor<FromType>, FromType::Subpixel: 'static, ToType::Subpixel: 'static