struct U8;
Trait Implementations§
source§impl Sample for U8
impl Sample for U8
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 U8
impl RefUnwindSafe for U8
impl Send for U8
impl Sync for U8
impl Unpin for U8
impl UnwindSafe for U8
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