pub enum DungeonType {
Light,
Shadow,
}Expand description
The category of a dungeon. This is only used internally, so there is no real point for you to use this
Variants§
Trait Implementations§
Source§impl Clone for DungeonType
impl Clone for DungeonType
Source§fn clone(&self) -> DungeonType
fn clone(&self) -> DungeonType
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 DungeonType
impl Debug for DungeonType
Source§impl<'de> Deserialize<'de> for DungeonType
impl<'de> Deserialize<'de> for DungeonType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for DungeonType
impl Hash for DungeonType
Source§impl PartialEq for DungeonType
impl PartialEq for DungeonType
Source§impl Serialize for DungeonType
impl Serialize for DungeonType
impl Copy for DungeonType
impl Eq for DungeonType
impl StructuralPartialEq for DungeonType
Auto Trait Implementations§
impl Freeze for DungeonType
impl RefUnwindSafe for DungeonType
impl Send for DungeonType
impl Sync for DungeonType
impl Unpin for DungeonType
impl UnwindSafe for DungeonType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.