pub struct Tif { /* private fields */ }Expand description
Main exported struct.
Implementations§
Trait Implementations§
Source§impl Frame for Tif
impl Frame for Tif
Source§fn header_mut(&mut self) -> &mut Header
fn header_mut(&mut self) -> &mut Header
Reimplemented method returning a mutable reference of the Header.
Source§fn array_mut(&mut self) -> &mut Array
fn array_mut(&mut self) -> &mut Array
Reimplemented method returning a mutable reference of the Array.
Source§fn consume_array(self: Box<Self>) -> Array
fn consume_array(self: Box<Self>) -> Array
Source§fn take_array(&mut self) -> Array
fn take_array(&mut self) -> Array
Source§fn next_frame(&mut self) -> FrameResult<usize>
fn next_frame(&mut self) -> FrameResult<usize>
Switches Frame to the next sub-frame.
Source§fn total_frames(&self) -> usize
fn total_frames(&self) -> usize
Returns total number of sub-frames.
Source§fn current_frame(&self) -> usize
fn current_frame(&self) -> usize
Returns the current frame number.
Source§fn get_header_i64(&self, key: &str) -> FrameResult<i64>
fn get_header_i64(&self, key: &str) -> FrameResult<i64>
Source§fn get_header_str_or_empty(&self, key: &str) -> &str
fn get_header_str_or_empty(&self, key: &str) -> &str
Source§fn get_header_float(&self, key: &str) -> f64
fn get_header_float(&self, key: &str) -> f64
Source§fn get_header_str(&self, key: &str) -> FrameResult<&str>
fn get_header_str(&self, key: &str) -> FrameResult<&str>
fn get_header_int_as_string_or_empty(&self, key: &str) -> String
fn get_header_str_as_i64(&self, key: &str) -> FrameResult<i64>
Source§fn insert(&mut self, key: String, value: HeaderEntry)
fn insert(&mut self, key: String, value: HeaderEntry)
Auto Trait Implementations§
impl Freeze for Tif
impl RefUnwindSafe for Tif
impl Send for Tif
impl Sync for Tif
impl Unpin for Tif
impl UnwindSafe for Tif
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