pub struct Entry {
type_: Type,
count: u64,
offset: [u8; 8],
}
Fields§
§type_: Type
§count: u64
§offset: [u8; 8]
Implementations§
source§impl Entry
impl Entry
pub fn new(type_: Type, count: u32, offset: [u8; 4]) -> Entry
pub fn new_u64(type_: Type, count: u64, offset: [u8; 8]) -> Entry
sourcefn r(&self, byte_order: ByteOrder) -> SmartReader<Cursor<Vec<u8>>> ⓘ
fn r(&self, byte_order: ByteOrder) -> SmartReader<Cursor<Vec<u8>>> ⓘ
Returns a mem_reader for the offset/value field
pub fn val<R: Read + Seek>( &self, limits: &Limits, bigtiff: bool, reader: &mut SmartReader<R>, ) -> TiffResult<Value>
fn decode_offset<R, F>( &self, value_count: u64, bo: ByteOrder, bigtiff: bool, limits: &Limits, reader: &mut SmartReader<R>, decode_fn: F, ) -> TiffResult<Value>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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