pub enum ElementRoll {
Dice(DiceRoll),
Bonus(u32),
}Variants§
Trait Implementations§
Source§impl Clone for ElementRoll
impl Clone for ElementRoll
Source§fn clone(&self) -> ElementRoll
fn clone(&self) -> ElementRoll
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 ElementRoll
impl Debug for ElementRoll
Source§impl Display for ElementRoll
impl Display for ElementRoll
Source§impl PartialEq for ElementRoll
impl PartialEq for ElementRoll
Source§impl Rolled for ElementRoll
impl Rolled for ElementRoll
fn rolled_value(&self) -> i32
impl Eq for ElementRoll
impl StructuralPartialEq for ElementRoll
Auto Trait Implementations§
impl Freeze for ElementRoll
impl RefUnwindSafe for ElementRoll
impl Send for ElementRoll
impl Sync for ElementRoll
impl Unpin for ElementRoll
impl UnsafeUnpin for ElementRoll
impl UnwindSafe for ElementRoll
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.