Struct tiff_encoder::tiff_type::LONG
source · pub struct LONG(pub u32);Expand description
32-bit (4-byte) unsigned integer.
Tuple Fields§
§0: u32Implementations§
source§impl LONG
impl LONG
sourcepub fn values(values: Vec<u32>) -> TiffTypeValues<LONG>
pub fn values(values: Vec<u32>) -> TiffTypeValues<LONG>
Constructs a TiffTypeValues of LONGs 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.