pub enum DiceCost {
Any,
Same,
Exact(Element),
}Variants§
Any
Any dice can be used for this card
Same
All dice used must be of the same element
Exact(Element)
The dice used must be of a given specific element
Trait Implementations§
impl Copy for DiceCost
impl Eq for DiceCost
impl StructuralPartialEq for DiceCost
Auto Trait Implementations§
impl Freeze for DiceCost
impl RefUnwindSafe for DiceCost
impl Send for DiceCost
impl Sync for DiceCost
impl Unpin for DiceCost
impl UnwindSafe for DiceCost
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