pub enum TiletypeShape {
Show 21 variants
NO_SHAPE = -1,
EMPTY = 0,
FLOOR = 1,
BOULDER = 2,
PEBBLES = 3,
WALL = 4,
FORTIFICATION = 5,
STAIR_UP = 6,
STAIR_DOWN = 7,
STAIR_UPDOWN = 8,
RAMP = 9,
RAMP_TOP = 10,
BROOK_BED = 11,
BROOK_TOP = 12,
TREE_SHAPE = 13,
SAPLING = 14,
SHRUB = 15,
ENDLESS_PIT = 16,
BRANCH = 17,
TRUNK_BRANCH = 18,
TWIG = 19,
}Variants§
NO_SHAPE = -1
EMPTY = 0
FLOOR = 1
BOULDER = 2
PEBBLES = 3
WALL = 4
FORTIFICATION = 5
STAIR_UP = 6
STAIR_DOWN = 7
STAIR_UPDOWN = 8
RAMP = 9
RAMP_TOP = 10
BROOK_BED = 11
BROOK_TOP = 12
TREE_SHAPE = 13
SAPLING = 14
SHRUB = 15
ENDLESS_PIT = 16
BRANCH = 17
TRUNK_BRANCH = 18
TWIG = 19
Trait Implementations§
Source§impl Clone for TiletypeShape
impl Clone for TiletypeShape
Source§fn clone(&self) -> TiletypeShape
fn clone(&self) -> TiletypeShape
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 TiletypeShape
impl Debug for TiletypeShape
Source§impl Default for TiletypeShape
impl Default for TiletypeShape
Source§impl Enum for TiletypeShape
impl Enum for TiletypeShape
Source§const VALUES: &'static [TiletypeShape]
const VALUES: &'static [TiletypeShape]
All enum values for enum type.
Source§impl EnumFull for TiletypeShape
impl EnumFull for TiletypeShape
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 TiletypeShape
impl Hash for TiletypeShape
Source§impl PartialEq for TiletypeShape
impl PartialEq for TiletypeShape
impl Copy for TiletypeShape
impl Eq for TiletypeShape
impl StructuralPartialEq for TiletypeShape
Auto Trait Implementations§
impl Freeze for TiletypeShape
impl RefUnwindSafe for TiletypeShape
impl Send for TiletypeShape
impl Sync for TiletypeShape
impl Unpin for TiletypeShape
impl UnwindSafe for TiletypeShape
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