pub enum TiletypeSpecial {
Show 13 variants
NO_SPECIAL = -1,
NORMAL = 0,
RIVER_SOURCE = 1,
WATERFALL = 2,
SMOOTH = 3,
FURROWED = 4,
WET = 5,
DEAD = 6,
WORN_1 = 7,
WORN_2 = 8,
WORN_3 = 9,
TRACK = 10,
SMOOTH_DEAD = 11,
}Variants§
NO_SPECIAL = -1
NORMAL = 0
RIVER_SOURCE = 1
WATERFALL = 2
SMOOTH = 3
FURROWED = 4
WET = 5
DEAD = 6
WORN_1 = 7
WORN_2 = 8
WORN_3 = 9
TRACK = 10
SMOOTH_DEAD = 11
Trait Implementations§
Source§impl Clone for TiletypeSpecial
impl Clone for TiletypeSpecial
Source§fn clone(&self) -> TiletypeSpecial
fn clone(&self) -> TiletypeSpecial
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 TiletypeSpecial
impl Debug for TiletypeSpecial
Source§impl Default for TiletypeSpecial
impl Default for TiletypeSpecial
Source§impl Enum for TiletypeSpecial
impl Enum for TiletypeSpecial
Source§const VALUES: &'static [TiletypeSpecial]
const VALUES: &'static [TiletypeSpecial]
All enum values for enum type.
Source§impl EnumFull for TiletypeSpecial
impl EnumFull for TiletypeSpecial
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 TiletypeSpecial
impl Hash for TiletypeSpecial
Source§impl PartialEq for TiletypeSpecial
impl PartialEq for TiletypeSpecial
impl Copy for TiletypeSpecial
impl Eq for TiletypeSpecial
impl StructuralPartialEq for TiletypeSpecial
Auto Trait Implementations§
impl Freeze for TiletypeSpecial
impl RefUnwindSafe for TiletypeSpecial
impl Send for TiletypeSpecial
impl Sync for TiletypeSpecial
impl Unpin for TiletypeSpecial
impl UnwindSafe for TiletypeSpecial
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