IntoImageViewMut

Trait IntoImageViewMut 

Source
pub trait IntoImageViewMut: IntoImageView {
    // Required method
    fn image_view_mut<P: PixelTrait>(
        &mut self,
    ) -> Option<impl ImageViewMut<Pixel = P>>;
}
Expand description

Conversion into an ImageViewMut.

Required Methods§

Source

fn image_view_mut<P: PixelTrait>( &mut self, ) -> Option<impl ImageViewMut<Pixel = P>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§