pub struct LONG(pub u32);
Expand description
32-bit (4-byte) unsigned integer.
Tuple Fields§
§0: u32
Implementations§
Source§impl LONG
impl LONG
Sourcepub fn values<T: AsRef<[u32]>>(values: T) -> TiffTypeValues<LONG>
pub fn values<T: AsRef<[u32]>>(values: T) -> TiffTypeValues<LONG>
Constructs a TiffTypeValues
of LONG
s from a vector of
u32
.
Sourcepub fn single(value: u32) -> TiffTypeValues<LONG>
pub fn single(value: u32) -> TiffTypeValues<LONG>
Constructs a TiffTypeValues
consisting of a single LONG
.
In other words, marks this LONG
as the single value of its
field.
Trait Implementations§
impl StructuralPartialEq for LONG
Auto Trait Implementations§
impl Freeze for LONG
impl RefUnwindSafe for LONG
impl Send for LONG
impl Sync for LONG
impl Unpin for LONG
impl UnwindSafe for LONG
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