#[repr(u32)]pub enum TestEnvironmentDefinitionKind {
AllOf = 0,
GameRules = 1,
TimeOfDay = 2,
Weather = 3,
Function = 4,
}Variants§
Implementations§
Source§impl TestEnvironmentDefinitionKind
impl TestEnvironmentDefinitionKind
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 AzBuf for TestEnvironmentDefinitionKind
impl AzBuf for TestEnvironmentDefinitionKind
fn azalea_write(&self, buf: &mut impl Write) -> Result<(), Error>
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl Clone for TestEnvironmentDefinitionKind
impl Clone for TestEnvironmentDefinitionKind
Source§fn clone(&self) -> TestEnvironmentDefinitionKind
fn clone(&self) -> TestEnvironmentDefinitionKind
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<'de> Deserialize<'de> for TestEnvironmentDefinitionKind
Available on crate feature serde only.
impl<'de> Deserialize<'de> for TestEnvironmentDefinitionKind
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 Display for TestEnvironmentDefinitionKind
Convert the value to a stringified identifier, formatted like
"minecraft:air".
impl Display for TestEnvironmentDefinitionKind
Convert the value to a stringified identifier, formatted like
"minecraft:air".
Source§impl FromNbtTag for TestEnvironmentDefinitionKind
impl FromNbtTag for TestEnvironmentDefinitionKind
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for TestEnvironmentDefinitionKind
Parse the value from a stringified identifier, formatted like
either "air" or "minecraft:air".
impl FromStr for TestEnvironmentDefinitionKind
Parse the value from a stringified identifier, formatted like
either "air" or "minecraft:air".
Source§impl Hash for TestEnvironmentDefinitionKind
impl Hash for TestEnvironmentDefinitionKind
Source§impl Ord for TestEnvironmentDefinitionKind
impl Ord for TestEnvironmentDefinitionKind
Source§fn cmp(&self, other: &TestEnvironmentDefinitionKind) -> Ordering
fn cmp(&self, other: &TestEnvironmentDefinitionKind) -> 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 TestEnvironmentDefinitionKind
impl PartialEq for TestEnvironmentDefinitionKind
Source§fn eq(&self, other: &TestEnvironmentDefinitionKind) -> bool
fn eq(&self, other: &TestEnvironmentDefinitionKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for TestEnvironmentDefinitionKind
impl PartialOrd for TestEnvironmentDefinitionKind
Source§impl Serialize for TestEnvironmentDefinitionKind
Available on crate feature serde only.
impl Serialize for TestEnvironmentDefinitionKind
Available on crate feature
serde only.Source§impl ToNbtTag for TestEnvironmentDefinitionKind
impl ToNbtTag for TestEnvironmentDefinitionKind
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl<'a> TryFrom<&'a Identifier> for TestEnvironmentDefinitionKind
impl<'a> TryFrom<&'a Identifier> for TestEnvironmentDefinitionKind
Source§impl TryFrom<u32> for TestEnvironmentDefinitionKind
impl TryFrom<u32> for TestEnvironmentDefinitionKind
impl Copy for TestEnvironmentDefinitionKind
impl Eq for TestEnvironmentDefinitionKind
impl StructuralPartialEq for TestEnvironmentDefinitionKind
Auto Trait Implementations§
impl Freeze for TestEnvironmentDefinitionKind
impl RefUnwindSafe for TestEnvironmentDefinitionKind
impl Send for TestEnvironmentDefinitionKind
impl Sync for TestEnvironmentDefinitionKind
impl Unpin for TestEnvironmentDefinitionKind
impl UnwindSafe for TestEnvironmentDefinitionKind
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,
§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.