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