pub struct UNDEFINED(pub u8);Expand description
8-bit byte that may contain anything, depending on the definition of the field.
Tuple Fields§
§0: u8Implementations§
Source§impl UNDEFINED
impl UNDEFINED
Sourcepub fn values<T: AsRef<[u8]>>(values: T) -> TiffTypeValues<UNDEFINED>
pub fn values<T: AsRef<[u8]>>(values: T) -> TiffTypeValues<UNDEFINED>
Constructs a TiffTypeValues of UNDEFINEDs from a vector of
bytes.
Sourcepub fn single(value: u8) -> TiffTypeValues<UNDEFINED>
pub fn single(value: u8) -> TiffTypeValues<UNDEFINED>
Constructs a TiffTypeValues consisting of a single UNDEFINED.
In other words, marks this UNDEFINED as the single value of its
field.
Trait Implementations§
impl StructuralPartialEq for UNDEFINED
Auto Trait Implementations§
impl Freeze for UNDEFINED
impl RefUnwindSafe for UNDEFINED
impl Send for UNDEFINED
impl Sync for UNDEFINED
impl Unpin for UNDEFINED
impl UnwindSafe for UNDEFINED
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