#[repr(u8)]pub enum Grib2Table4_218 {
Show 42 variants
NoSceneIdentified = 0,
GreenNeedleLeafedForest = 1,
GreenBroadLeafedForest = 2,
DeciduousNeedleLeafedForest = 3,
DeciduousBroadLeafedForest = 4,
DeciduousMixedForest = 5,
ClosedShrubLand = 6,
OpenShrubLand = 7,
WoodySavannah = 8,
Savannah = 9,
Grassland = 10,
PermanentWetland = 11,
Cropland = 12,
Urban = 13,
VegetationCrops = 14,
PermanentSnowIce = 15,
BarrenDesert = 16,
WaterBodies = 17,
Tundra = 18,
WarmLiquidWaterCloud = 19,
SupercooledLiquidWaterCloud = 20,
MixedPhaseCloud = 21,
OpticallyThinIceCloud = 22,
OpticallyThickIceCloud = 23,
MultiLayerBlackCloud = 24,
SnowIceOnLand = 97,
SnowIceOnWater = 98,
SunGlint = 99,
GeneralCloud = 100,
LowCloudFogStratus = 101,
LowCloudStratocumulus = 102,
LowCloudUnknownType = 103,
MediumCloudNimbostratus = 104,
MediumCloudAltostratus = 105,
MediumCloudUnknownType = 106,
HighCloudCumulus = 107,
HighCloudCirrus = 108,
HighCloudUnknownType = 109,
UnknownCloudType = 110,
SingleLayerWaterCloud = 111,
SingleLayerIceCloud = 112,
Missing = 255,
}Expand description
Variants§
NoSceneIdentified = 0
GreenNeedleLeafedForest = 1
GreenBroadLeafedForest = 2
DeciduousNeedleLeafedForest = 3
DeciduousBroadLeafedForest = 4
DeciduousMixedForest = 5
ClosedShrubLand = 6
OpenShrubLand = 7
WoodySavannah = 8
Savannah = 9
Grassland = 10
PermanentWetland = 11
Cropland = 12
Urban = 13
VegetationCrops = 14
PermanentSnowIce = 15
BarrenDesert = 16
WaterBodies = 17
Tundra = 18
WarmLiquidWaterCloud = 19
SupercooledLiquidWaterCloud = 20
MixedPhaseCloud = 21
OpticallyThinIceCloud = 22
OpticallyThickIceCloud = 23
MultiLayerBlackCloud = 24
SnowIceOnLand = 97
SnowIceOnWater = 98
SunGlint = 99
GeneralCloud = 100
LowCloudFogStratus = 101
LowCloudStratocumulus = 102
LowCloudUnknownType = 103
MediumCloudNimbostratus = 104
MediumCloudAltostratus = 105
MediumCloudUnknownType = 106
HighCloudCumulus = 107
HighCloudCirrus = 108
HighCloudUnknownType = 109
UnknownCloudType = 110
SingleLayerWaterCloud = 111
SingleLayerIceCloud = 112
Missing = 255
Trait Implementations§
Source§impl Clone for Grib2Table4_218
impl Clone for Grib2Table4_218
Source§fn clone(&self) -> Grib2Table4_218
fn clone(&self) -> Grib2Table4_218
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Grib2Table4_218
impl Debug for Grib2Table4_218
Source§impl Display for Grib2Table4_218
impl Display for Grib2Table4_218
Source§impl From<u8> for Grib2Table4_218
impl From<u8> for Grib2Table4_218
Source§impl PartialEq for Grib2Table4_218
impl PartialEq for Grib2Table4_218
impl Copy for Grib2Table4_218
impl Eq for Grib2Table4_218
impl StructuralPartialEq for Grib2Table4_218
Auto Trait Implementations§
impl Freeze for Grib2Table4_218
impl RefUnwindSafe for Grib2Table4_218
impl Send for Grib2Table4_218
impl Sync for Grib2Table4_218
impl Unpin for Grib2Table4_218
impl UnwindSafe for Grib2Table4_218
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more