#[repr(u32)]pub enum EnchantmentType {
CastOnce = 0,
WhenStrikes = 1,
WhenUsed = 2,
ConstantEffect = 3,
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for EnchantmentType
impl Clone for EnchantmentType
Source§fn clone(&self) -> EnchantmentType
fn clone(&self) -> EnchantmentType
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 EnchantmentType
impl Debug for EnchantmentType
Source§impl<'de> Deserialize<'de> for EnchantmentType
impl<'de> Deserialize<'de> for EnchantmentType
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 Hash for EnchantmentType
impl Hash for EnchantmentType
Source§impl Ord for EnchantmentType
impl Ord for EnchantmentType
Source§fn cmp(&self, other: &EnchantmentType) -> Ordering
fn cmp(&self, other: &EnchantmentType) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EnchantmentType
impl PartialEq for EnchantmentType
Source§impl PartialOrd for EnchantmentType
impl PartialOrd for EnchantmentType
Source§impl Serialize for EnchantmentType
impl Serialize for EnchantmentType
Source§impl Display for EnchantmentType
impl Display for EnchantmentType
Source§fn fmt(&self, f: &mut std_fmt_Formatter<'_>) -> std_fmt_Result
fn fmt(&self, f: &mut std_fmt_Formatter<'_>) -> std_fmt_Result
Formats the value using the given formatter. Read more
Source§impl FromStr for EnchantmentType
impl FromStr for EnchantmentType
impl Copy for EnchantmentType
impl Eq for EnchantmentType
impl StructuralPartialEq for EnchantmentType
Auto Trait Implementations§
impl Freeze for EnchantmentType
impl RefUnwindSafe for EnchantmentType
impl Send for EnchantmentType
impl Sync for EnchantmentType
impl Unpin for EnchantmentType
impl UnwindSafe for EnchantmentType
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more