Enum tiff::decoder::DecodingBuffer
source · pub enum DecodingBuffer<'a> {
U8(&'a mut [u8]),
U16(&'a mut [u16]),
U32(&'a mut [u32]),
U64(&'a mut [u64]),
F32(&'a mut [f32]),
F64(&'a mut [f64]),
I8(&'a mut [i8]),
I16(&'a mut [i16]),
I32(&'a mut [i32]),
I64(&'a mut [i64]),
}
Variants§
U8(&'a mut [u8])
A slice of unsigned bytes
U16(&'a mut [u16])
A slice of unsigned words
U32(&'a mut [u32])
A slice of 32 bit unsigned ints
U64(&'a mut [u64])
A slice of 64 bit unsigned ints
F32(&'a mut [f32])
A slice of 32 bit IEEE floats
F64(&'a mut [f64])
A slice of 64 bit IEEE floats
I8(&'a mut [i8])
A slice of 8 bits signed ints
I16(&'a mut [i16])
A slice of 16 bits signed ints
I32(&'a mut [i32])
A slice of 32 bits signed ints
I64(&'a mut [i64])
A slice of 64 bits signed ints
Implementations§
source§impl<'a> DecodingBuffer<'a>
impl<'a> DecodingBuffer<'a>
fn byte_len(&self) -> usize
fn copy<'b>(&'b mut self) -> DecodingBuffer<'b>where
'a: 'b,
fn subrange<'b>(&'b mut self, range: Range<usize>) -> DecodingBuffer<'b>where
'a: 'b,
fn as_bytes_mut(&mut self) -> &mut [u8] ⓘ
Auto Trait Implementations§
impl<'a> Freeze for DecodingBuffer<'a>
impl<'a> RefUnwindSafe for DecodingBuffer<'a>
impl<'a> Send for DecodingBuffer<'a>
impl<'a> Sync for DecodingBuffer<'a>
impl<'a> Unpin for DecodingBuffer<'a>
impl<'a> !UnwindSafe for DecodingBuffer<'a>
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