struct BWBit;
Trait Implementations§
source§impl Sample for BWBit
impl Sample for BWBit
type Representation = u8
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
fn bytelen(width: u32, height: u32, samples: u32) -> ImageResult<usize>
Auto Trait Implementations§
impl Freeze for BWBit
impl RefUnwindSafe for BWBit
impl Send for BWBit
impl Sync for BWBit
impl Unpin for BWBit
impl UnwindSafe for BWBit
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