#[repr(u8)]pub enum LandformClass {
Valley = 1,
LowerSlope = 2,
Flat = 3,
MiddleSlope = 4,
UpperSlope = 5,
Ridge = 6,
}Expand description
Landform classes following Weiss (2001) TPI-based classification
Variants§
Valley = 1
Deep valley / canyon
LowerSlope = 2
Lower slope / footslope
Flat = 3
Flat area / plain
MiddleSlope = 4
Middle slope
UpperSlope = 5
Upper slope / shoulder
Ridge = 6
Ridge / hilltop
Implementations§
Trait Implementations§
Source§impl Clone for LandformClass
impl Clone for LandformClass
Source§fn clone(&self) -> LandformClass
fn clone(&self) -> LandformClass
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LandformClass
impl Debug for LandformClass
Source§impl Hash for LandformClass
impl Hash for LandformClass
Source§impl PartialEq for LandformClass
impl PartialEq for LandformClass
impl Copy for LandformClass
impl Eq for LandformClass
impl StructuralPartialEq for LandformClass
Auto Trait Implementations§
impl Freeze for LandformClass
impl RefUnwindSafe for LandformClass
impl Send for LandformClass
impl Sync for LandformClass
impl Unpin for LandformClass
impl UnsafeUnpin for LandformClass
impl UnwindSafe for LandformClass
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