pub enum RoughnessMethod {
StandardDeviation,
Range,
CoefficientOfVariation,
}Expand description
Method for computing surface roughness
Variants§
StandardDeviation
Standard deviation of elevations
Range
Range (max - min) of elevations
CoefficientOfVariation
Coefficient of variation (stddev / mean)
Trait Implementations§
Source§impl Clone for RoughnessMethod
impl Clone for RoughnessMethod
Source§fn clone(&self) -> RoughnessMethod
fn clone(&self) -> RoughnessMethod
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 RoughnessMethod
impl Debug for RoughnessMethod
Source§impl PartialEq for RoughnessMethod
impl PartialEq for RoughnessMethod
impl Copy for RoughnessMethod
impl Eq for RoughnessMethod
impl StructuralPartialEq for RoughnessMethod
Auto Trait Implementations§
impl Freeze for RoughnessMethod
impl RefUnwindSafe for RoughnessMethod
impl Send for RoughnessMethod
impl Sync for RoughnessMethod
impl Unpin for RoughnessMethod
impl UnsafeUnpin for RoughnessMethod
impl UnwindSafe for RoughnessMethod
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