Struct image::pnm::PnmHeader [−][src]
pub struct PnmHeader { /* fields omitted */ }
Stores the complete header data of a file.
Internally, provides mechanisms for lossless reencoding. After reading a file with the decoder it is possible to recover the header and construct an encoder. Using the encoder on the just loaded image should result in a byte copy of the original file (for single image pnms without additional trailing data).
Implementations
impl PnmHeader
[src]
pub fn subtype(&self) -> PNMSubtype
[src]
Retrieve the format subtype from which the header was created.
pub fn width(&self) -> u32
[src]
The width of the image this header is for.
pub fn height(&self) -> u32
[src]
The height of the image this header is for.
pub fn maximal_sample(&self) -> u32
[src]
The biggest value a sample can have. In other words, the colour resolution.
pub fn as_bitmap(&self) -> Option<&BitmapHeader>
[src]
Retrieve the underlying bitmap header if any
pub fn as_graymap(&self) -> Option<&GraymapHeader>
[src]
Retrieve the underlying graymap header if any
pub fn as_pixmap(&self) -> Option<&PixmapHeader>
[src]
Retrieve the underlying pixmap header if any
pub fn as_arbitrary(&self) -> Option<&ArbitraryHeader>
[src]
Retrieve the underlying arbitrary header if any
pub fn write(&self, writer: &mut dyn Write) -> Result<()>
[src]
Write the header back into a binary stream
Trait Implementations
impl From<ArbitraryHeader> for PnmHeader
[src]
fn from(header: ArbitraryHeader) -> Self
[src]
impl From<BitmapHeader> for PnmHeader
[src]
fn from(header: BitmapHeader) -> Self
[src]
impl From<GraymapHeader> for PnmHeader
[src]
fn from(header: GraymapHeader) -> Self
[src]
impl From<PixmapHeader> for PnmHeader
[src]
fn from(header: PixmapHeader) -> Self
[src]
Auto Trait Implementations
impl RefUnwindSafe for PnmHeader
impl Send for PnmHeader
impl Sync for PnmHeader
impl Unpin for PnmHeader
impl UnwindSafe for PnmHeader
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Pointable for T
[src]
pub const ALIGN: usize
[src]
type Init = T
The type for initializers.
pub unsafe fn init(init: <T as Pointable>::Init) -> usize
[src]
pub unsafe fn deref<'a>(ptr: usize) -> &'a T
[src]
pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
[src]
pub unsafe fn drop(ptr: usize)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,