Struct PixmapHeader
pub struct PixmapHeader { pub encoding: SampleEncoding, pub height: u32, pub width: u32, pub maxval: u32 }
Header produced by a ppm file ("Portable Pixel Map")
Fields
encoding: SampleEncodingBinary or Ascii encoded file
height: u32Height of the image file
width: u32Width of the image file
maxval: u32Maximum sample value within the image
Trait Implementations
impl Clone for PixmapHeader
fn clone(&self) -> PixmapHeader
impl Copy for PixmapHeader
impl Debug for PixmapHeader
fn fmt(&self, f: &mut Formatter<'_>) -> Result
Auto Trait Implementations
impl Freeze for PixmapHeader
impl RefUnwindSafe for PixmapHeader
impl Send for PixmapHeader
impl Sync for PixmapHeader
impl Unpin for PixmapHeader
impl UnsafeUnpin for PixmapHeader
impl UnwindSafe for PixmapHeader
Blanket Implementations
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for PixmapHeader
where
ST: ?Sized,
DT: ?Sized,
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for PixmapHeader
where
ST: ?Sized,
DT: ?Sized,
impl<T> Any for PixmapHeader
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for PixmapHeader
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for PixmapHeader
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for PixmapHeader
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for PixmapHeader
fn from(t: T) -> TReturns the argument unchanged.
impl<T> IntoEither for PixmapHeader
impl<T> Pointable for PixmapHeader
const ALIGN: usize = _;type Init = T;unsafe fn init(init: <T as Pointable>::Init) -> usizeunsafe fn deref<'a>(ptr: usize) -> &'a Tunsafe fn deref_mut<'a>(ptr: usize) -> &'a mut Tunsafe fn drop(ptr: usize)
impl<T> Read<Exclusive, BecauseExclusive> for PixmapHeader
where
T: ?Sized,
impl<T> ToOwned for PixmapHeader
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for PixmapHeader
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for PixmapHeader
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for PixmapHeader
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>