#[repr(u32)]pub enum EnchantmentLevelBasedValueKind {
Clamped = 0,
Fraction = 1,
LevelsSquared = 2,
Linear = 3,
Exponent = 4,
Lookup = 5,
}Variants§
Implementations§
Source§impl EnchantmentLevelBasedValueKind
impl EnchantmentLevelBasedValueKind
Sourcepub unsafe fn from_u32_unchecked(id: u32) -> Self
pub unsafe fn from_u32_unchecked(id: u32) -> Self
pub fn is_valid_id(id: u32) -> bool
Trait Implementations§
Source§impl AzaleaRead for EnchantmentLevelBasedValueKind
impl AzaleaRead for EnchantmentLevelBasedValueKind
Source§impl AzaleaWrite for EnchantmentLevelBasedValueKind
impl AzaleaWrite for EnchantmentLevelBasedValueKind
Source§impl Clone for EnchantmentLevelBasedValueKind
impl Clone for EnchantmentLevelBasedValueKind
Source§fn clone(&self) -> EnchantmentLevelBasedValueKind
fn clone(&self) -> EnchantmentLevelBasedValueKind
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for EnchantmentLevelBasedValueKind
Available on crate feature serde only.
impl<'de> Deserialize<'de> for EnchantmentLevelBasedValueKind
Available on crate feature
serde only.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 FromNbtTag for EnchantmentLevelBasedValueKind
impl FromNbtTag for EnchantmentLevelBasedValueKind
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl Ord for EnchantmentLevelBasedValueKind
impl Ord for EnchantmentLevelBasedValueKind
Source§fn cmp(&self, other: &EnchantmentLevelBasedValueKind) -> Ordering
fn cmp(&self, other: &EnchantmentLevelBasedValueKind) -> Ordering
1.21.0§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 PartialOrd for EnchantmentLevelBasedValueKind
impl PartialOrd for EnchantmentLevelBasedValueKind
Source§impl Serialize for EnchantmentLevelBasedValueKind
Available on crate feature serde only.
impl Serialize for EnchantmentLevelBasedValueKind
Available on crate feature
serde only.Source§impl ToNbtTag for EnchantmentLevelBasedValueKind
impl ToNbtTag for EnchantmentLevelBasedValueKind
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl TryFrom<u32> for EnchantmentLevelBasedValueKind
impl TryFrom<u32> for EnchantmentLevelBasedValueKind
impl Copy for EnchantmentLevelBasedValueKind
impl Eq for EnchantmentLevelBasedValueKind
impl StructuralPartialEq for EnchantmentLevelBasedValueKind
Auto Trait Implementations§
impl Freeze for EnchantmentLevelBasedValueKind
impl RefUnwindSafe for EnchantmentLevelBasedValueKind
impl Send for EnchantmentLevelBasedValueKind
impl Sync for EnchantmentLevelBasedValueKind
impl Unpin for EnchantmentLevelBasedValueKind
impl UnwindSafe for EnchantmentLevelBasedValueKind
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.