struct PbmBit;
Trait Implementations§
source§impl Sample for PbmBit
impl Sample for PbmBit
type Representation = u8
fn bytelen(width: u32, height: u32, samples: u32) -> ImageResult<usize>
fn from_bytes( bytes: &[u8], row_size: usize, output_buf: &mut [u8], ) -> ImageResult<()>
fn from_ascii(reader: &mut dyn Read, output_buf: &mut [u8]) -> ImageResult<()>
source§fn sample_size() -> u32
fn sample_size() -> u32
Representation size in bytes
Auto Trait Implementations§
impl Freeze for PbmBit
impl RefUnwindSafe for PbmBit
impl Send for PbmBit
impl Sync for PbmBit
impl Unpin for PbmBit
impl UnwindSafe for PbmBit
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more