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