pub enum RollDicePrice {
Free = 0,
Mushrooms = 1,
Hourglass = 2,
}
Expand description
The price you have to pay to roll the dice
Variants§
Trait Implementations§
Source§impl Clone for RollDicePrice
impl Clone for RollDicePrice
Source§fn clone(&self) -> RollDicePrice
fn clone(&self) -> RollDicePrice
Returns a copy 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 RollDicePrice
impl Debug for RollDicePrice
Source§impl<'de> Deserialize<'de> for RollDicePrice
impl<'de> Deserialize<'de> for RollDicePrice
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 PartialEq for RollDicePrice
impl PartialEq for RollDicePrice
Source§impl Serialize for RollDicePrice
impl Serialize for RollDicePrice
impl Copy for RollDicePrice
impl StructuralPartialEq for RollDicePrice
Auto Trait Implementations§
impl Freeze for RollDicePrice
impl RefUnwindSafe for RollDicePrice
impl Send for RollDicePrice
impl Sync for RollDicePrice
impl Unpin for RollDicePrice
impl UnwindSafe for RollDicePrice
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