pub enum CreaseKind {
Mountain,
Valley,
Flat,
}Expand description
A crease classification.
Variants§
Trait Implementations§
Source§impl Clone for CreaseKind
impl Clone for CreaseKind
Source§fn clone(&self) -> CreaseKind
fn clone(&self) -> CreaseKind
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 moreSource§impl Debug for CreaseKind
impl Debug for CreaseKind
Source§impl PartialEq for CreaseKind
impl PartialEq for CreaseKind
Source§fn eq(&self, other: &CreaseKind) -> bool
fn eq(&self, other: &CreaseKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CreaseKind
impl Eq for CreaseKind
impl StructuralPartialEq for CreaseKind
Auto Trait Implementations§
impl Freeze for CreaseKind
impl RefUnwindSafe for CreaseKind
impl Send for CreaseKind
impl Sync for CreaseKind
impl Unpin for CreaseKind
impl UnsafeUnpin for CreaseKind
impl UnwindSafe for CreaseKind
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