#[non_exhaustive]pub enum Tag {
Show 55 variants
Artist,
BitsPerSample,
CellLength,
CellWidth,
ColorMap,
Compression,
Copyright,
DateTime,
ExtraSamples,
FillOrder,
FreeByteCounts,
FreeOffsets,
GrayResponseCurve,
GrayResponseUnit,
HostComputer,
ImageDescription,
ImageLength,
ImageWidth,
Make,
MaxSampleValue,
MinSampleValue,
Model,
NewSubfileType,
Orientation,
PhotometricInterpretation,
PlanarConfiguration,
ResolutionUnit,
RowsPerStrip,
SamplesPerPixel,
Software,
StripByteCounts,
StripOffsets,
SubfileType,
Threshholding,
XResolution,
YResolution,
Predictor,
TileWidth,
TileLength,
TileOffsets,
TileByteCounts,
SampleFormat,
SMinSampleValue,
SMaxSampleValue,
JPEGTables,
ModelPixelScale,
ModelTransformation,
ModelTiepoint,
GeoKeyDirectory,
GeoDoubleParams,
GeoAsciiParams,
GdalNodata,
GdalMetadata,
LercParameters,
Unknown(u16),
}Expand description
Tag identifiers.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Artist
BitsPerSample
CellLength
CellWidth
ColorMap
Color map for palette-color images (PhotometricInterpretation 3)
Compression
Compression scheme used on the image data
Copyright
DateTime
ExtraSamples
The meaning of each extra sample beyond that defined by PhotometricInterpretation
FillOrder
FreeByteCounts
FreeOffsets
GrayResponseCurve
GrayResponseUnit
HostComputer
ImageDescription
ImageLength
ImageWidth
Make
MaxSampleValue
MinSampleValue
Model
NewSubfileType
Orientation
PhotometricInterpretation
PlanarConfiguration
ResolutionUnit
RowsPerStrip
SamplesPerPixel
Software
StripByteCounts
StripOffsets
SubfileType
Threshholding
XResolution
YResolution
Predictor
TileWidth
TileLength
TileOffsets
TileByteCounts
SampleFormat
SMinSampleValue
SMaxSampleValue
JPEGTables
ModelPixelScale
ModelTransformation
ModelTiepoint
GeoKeyDirectory
GeoDoubleParams
GeoAsciiParams
GdalNodata
GDAL-specific NoData value
GdalMetadata
LercParameters
Extra parameters for LERC decompression
Defines a Vec<u32> of [Version (u32), CompressionType (u32), ...]
Unknown(u16)
A private or extension tag
Implementations§
Trait Implementations§
impl Copy for Tag
impl Eq for Tag
impl StructuralPartialEq for Tag
Auto Trait Implementations§
impl Freeze for Tag
impl RefUnwindSafe for Tag
impl Send for Tag
impl Sync for Tag
impl Unpin for Tag
impl UnsafeUnpin for Tag
impl UnwindSafe for Tag
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