Struct image::codecs::bmp::BmpEncoder
source · pub struct BmpEncoder<'a, W: 'a> { /* private fields */ }
Expand description
The representation of a BMP encoder.
Implementations§
Trait Implementations§
source§impl<'a, W: Write> ImageEncoder for BmpEncoder<'a, W>
impl<'a, W: Write> ImageEncoder for BmpEncoder<'a, W>
source§fn write_image(
self,
buf: &[u8],
width: u32,
height: u32,
color_type: ColorType
) -> ImageResult<()>
fn write_image( self, buf: &[u8], width: u32, height: u32, color_type: ColorType ) -> ImageResult<()>
Writes all the bytes in an image to the encoder. Read more
Auto Trait Implementations§
impl<'a, W> RefUnwindSafe for BmpEncoder<'a, W>where W: RefUnwindSafe,
impl<'a, W> Send for BmpEncoder<'a, W>where W: Send,
impl<'a, W> Sync for BmpEncoder<'a, W>where W: Sync,
impl<'a, W> Unpin for BmpEncoder<'a, W>
impl<'a, W> !UnwindSafe for BmpEncoder<'a, W>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more