pub enum SemanticProducedMana<'a> {
Any,
Chosen,
Combo(SemanticProducedManaCombo<'a>),
Special(&'a str),
Fixed(SmallVec<[&'a str; 4]>),
Raw(&'a str),
}Variants§
Any
Chosen
Combo(SemanticProducedManaCombo<'a>)
Special(&'a str)
Fixed(SmallVec<[&'a str; 4]>)
Raw(&'a str)
Trait Implementations§
Source§impl<'a> Clone for SemanticProducedMana<'a>
impl<'a> Clone for SemanticProducedMana<'a>
Source§fn clone(&self) -> SemanticProducedMana<'a>
fn clone(&self) -> SemanticProducedMana<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for SemanticProducedMana<'a>
impl<'a> Debug for SemanticProducedMana<'a>
impl<'a> Eq for SemanticProducedMana<'a>
Source§impl<'a> PartialEq for SemanticProducedMana<'a>
impl<'a> PartialEq for SemanticProducedMana<'a>
Source§fn eq(&self, other: &SemanticProducedMana<'a>) -> bool
fn eq(&self, other: &SemanticProducedMana<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for SemanticProducedMana<'a>
Auto Trait Implementations§
impl<'a> Freeze for SemanticProducedMana<'a>
impl<'a> RefUnwindSafe for SemanticProducedMana<'a>
impl<'a> Send for SemanticProducedMana<'a>
impl<'a> Sync for SemanticProducedMana<'a>
impl<'a> Unpin for SemanticProducedMana<'a>
impl<'a> UnsafeUnpin for SemanticProducedMana<'a>
impl<'a> UnwindSafe for SemanticProducedMana<'a>
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