pub struct TiffTag { /* private fields */ }
Implementations§
Source§impl TiffTag
impl TiffTag
pub fn tag(&self) -> u16
pub fn identified_tag(&self) -> &Option<TiffTagType>
pub fn field_type(&self) -> &TiffTagFormat
pub fn value_count(&self) -> u32
pub fn value(&self) -> &TiffTagValue
pub fn read<T: Bits>( source: &mut T, order: ByteOrder, ) -> Result<TiffTag, ImageError>
pub fn try_resolve_value<T: Bits + Seek>( &mut self, source: &mut T, order: ByteOrder, ) -> Result<(), BitsError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TiffTag
impl RefUnwindSafe for TiffTag
impl Send for TiffTag
impl Sync for TiffTag
impl Unpin for TiffTag
impl UnwindSafe for TiffTag
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