pub enum StairsShape {
Straight,
InnerLeft,
InnerRight,
OuterLeft,
OuterRight,
}Variants§
Trait Implementations§
Source§impl Clone for StairsShape
impl Clone for StairsShape
Source§fn clone(&self) -> StairsShape
fn clone(&self) -> StairsShape
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 StairsShape
impl Debug for StairsShape
Source§impl PartialEq for StairsShape
impl PartialEq for StairsShape
Source§fn eq(&self, other: &StairsShape) -> bool
fn eq(&self, other: &StairsShape) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PropertyEnum for StairsShape
impl PropertyEnum for StairsShape
impl StructuralPartialEq for StairsShape
Auto Trait Implementations§
impl Freeze for StairsShape
impl RefUnwindSafe for StairsShape
impl Send for StairsShape
impl Sync for StairsShape
impl Unpin for StairsShape
impl UnsafeUnpin for StairsShape
impl UnwindSafe for StairsShape
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