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