pub enum ConditionType {
Show 15 variants
Blinded,
Charmed,
Deafened,
Exhaustion,
Frightened,
Grappled,
Incapacitated,
Invisible,
Paralyzed,
Petrified,
Poisoned,
Prone,
Restrained,
Stunned,
Unconscious,
}
Variants§
Blinded
Charmed
Deafened
Exhaustion
Frightened
Grappled
Incapacitated
Invisible
Paralyzed
Petrified
Poisoned
Prone
Restrained
Stunned
Unconscious
Trait Implementations§
Source§impl Clone for ConditionType
impl Clone for ConditionType
Source§fn clone(&self) -> ConditionType
fn clone(&self) -> ConditionType
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ConditionType
impl Debug for ConditionType
Source§impl<'de> Deserialize<'de> for ConditionType
impl<'de> Deserialize<'de> for ConditionType
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 Display for ConditionType
impl Display for ConditionType
Source§impl Hash for ConditionType
impl Hash for ConditionType
Source§impl PartialEq for ConditionType
impl PartialEq for ConditionType
Source§impl Serialize for ConditionType
impl Serialize for ConditionType
impl Eq for ConditionType
impl StructuralPartialEq for ConditionType
Auto Trait Implementations§
impl Freeze for ConditionType
impl RefUnwindSafe for ConditionType
impl Send for ConditionType
impl Sync for ConditionType
impl Unpin for ConditionType
impl UnwindSafe for ConditionType
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