#[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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LandformClass
Source§impl Debug for LandformClass
impl Debug for LandformClass
impl Eq for LandformClass
Source§impl Hash for LandformClass
impl Hash for LandformClass
Source§impl PartialEq for LandformClass
impl PartialEq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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