Struct image::codecs::pnm::BitmapHeader
source · pub struct BitmapHeader {
pub encoding: SampleEncoding,
pub height: u32,
pub width: u32,
}
Expand description
Header produced by a pbm
file (“Portable Bit Map”)
Fields§
§encoding: SampleEncoding
Binary or Ascii encoded file
height: u32
Height of the image file
width: u32
Width of the image file
Trait Implementations§
source§impl Clone for BitmapHeader
impl Clone for BitmapHeader
source§fn clone(&self) -> BitmapHeader
fn clone(&self) -> BitmapHeader
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BitmapHeader
impl Debug for BitmapHeader
source§impl From<BitmapHeader> for PnmHeader
impl From<BitmapHeader> for PnmHeader
source§fn from(header: BitmapHeader) -> Self
fn from(header: BitmapHeader) -> Self
Converts to this type from the input type.
impl Copy for BitmapHeader
Auto Trait Implementations§
impl Freeze for BitmapHeader
impl RefUnwindSafe for BitmapHeader
impl Send for BitmapHeader
impl Sync for BitmapHeader
impl Unpin for BitmapHeader
impl UnwindSafe for BitmapHeader
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