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: SampleEncodingBinary or Ascii encoded file
height: u32Height of the image file
width: u32Width 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.