pub enum BasicShape {
NONE = 0,
OPEN = 1,
WALL = 3,
FLOOR = 4,
RAMP_UP = 5,
RAMP_DOWN = 6,
}Variants§
Trait Implementations§
Source§impl Clone for BasicShape
impl Clone for BasicShape
Source§fn clone(&self) -> BasicShape
fn clone(&self) -> BasicShape
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 BasicShape
impl Debug for BasicShape
Source§impl Default for BasicShape
impl Default for BasicShape
Source§impl Enum for BasicShape
impl Enum for BasicShape
Source§const VALUES: &'static [BasicShape]
const VALUES: &'static [BasicShape]
All enum values for enum type.
Source§impl EnumFull for BasicShape
impl EnumFull for BasicShape
Source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
Source§impl Hash for BasicShape
impl Hash for BasicShape
Source§impl PartialEq for BasicShape
impl PartialEq for BasicShape
impl Copy for BasicShape
impl Eq for BasicShape
impl StructuralPartialEq for BasicShape
Auto Trait Implementations§
impl Freeze for BasicShape
impl RefUnwindSafe for BasicShape
impl Send for BasicShape
impl Sync for BasicShape
impl Unpin for BasicShape
impl UnwindSafe for BasicShape
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