#[repr(u32)]pub enum WorldgenPlacementModifierKind {
Show 15 variants
BlockPredicateFilter = 0,
RarityFilter = 1,
SurfaceRelativeThresholdFilter = 2,
SurfaceWaterDepthFilter = 3,
Biome = 4,
Count = 5,
NoiseBasedCount = 6,
NoiseThresholdCount = 7,
CountOnEveryLayer = 8,
EnvironmentScan = 9,
Heightmap = 10,
HeightRange = 11,
InSquare = 12,
RandomOffset = 13,
FixedPlacement = 14,
}Variants§
BlockPredicateFilter = 0
RarityFilter = 1
SurfaceRelativeThresholdFilter = 2
SurfaceWaterDepthFilter = 3
Biome = 4
Count = 5
NoiseBasedCount = 6
NoiseThresholdCount = 7
CountOnEveryLayer = 8
EnvironmentScan = 9
Heightmap = 10
HeightRange = 11
InSquare = 12
RandomOffset = 13
FixedPlacement = 14
Implementations§
Source§impl WorldgenPlacementModifierKind
impl WorldgenPlacementModifierKind
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 WorldgenPlacementModifierKind
impl AzBuf for WorldgenPlacementModifierKind
fn azalea_write(&self, buf: &mut impl Write) -> Result<(), Error>
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl Clone for WorldgenPlacementModifierKind
impl Clone for WorldgenPlacementModifierKind
Source§fn clone(&self) -> WorldgenPlacementModifierKind
fn clone(&self) -> WorldgenPlacementModifierKind
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 WorldgenPlacementModifierKind
Available on crate feature serde only.
impl<'de> Deserialize<'de> for WorldgenPlacementModifierKind
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 WorldgenPlacementModifierKind
Convert the value to a stringified identifier, formatted like
"minecraft:air".
impl Display for WorldgenPlacementModifierKind
Convert the value to a stringified identifier, formatted like
"minecraft:air".
Source§impl FromNbtTag for WorldgenPlacementModifierKind
impl FromNbtTag for WorldgenPlacementModifierKind
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for WorldgenPlacementModifierKind
Parse the value from a stringified identifier, formatted like
either "air" or "minecraft:air".
impl FromStr for WorldgenPlacementModifierKind
Parse the value from a stringified identifier, formatted like
either "air" or "minecraft:air".
Source§impl Hash for WorldgenPlacementModifierKind
impl Hash for WorldgenPlacementModifierKind
Source§impl Ord for WorldgenPlacementModifierKind
impl Ord for WorldgenPlacementModifierKind
Source§fn cmp(&self, other: &WorldgenPlacementModifierKind) -> Ordering
fn cmp(&self, other: &WorldgenPlacementModifierKind) -> 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 WorldgenPlacementModifierKind
impl PartialEq for WorldgenPlacementModifierKind
Source§fn eq(&self, other: &WorldgenPlacementModifierKind) -> bool
fn eq(&self, other: &WorldgenPlacementModifierKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for WorldgenPlacementModifierKind
impl PartialOrd for WorldgenPlacementModifierKind
Source§impl Serialize for WorldgenPlacementModifierKind
Available on crate feature serde only.
impl Serialize for WorldgenPlacementModifierKind
Available on crate feature
serde only.Source§impl ToNbtTag for WorldgenPlacementModifierKind
impl ToNbtTag for WorldgenPlacementModifierKind
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl<'a> TryFrom<&'a Identifier> for WorldgenPlacementModifierKind
impl<'a> TryFrom<&'a Identifier> for WorldgenPlacementModifierKind
Source§impl TryFrom<u32> for WorldgenPlacementModifierKind
impl TryFrom<u32> for WorldgenPlacementModifierKind
impl Copy for WorldgenPlacementModifierKind
impl Eq for WorldgenPlacementModifierKind
impl StructuralPartialEq for WorldgenPlacementModifierKind
Auto Trait Implementations§
impl Freeze for WorldgenPlacementModifierKind
impl RefUnwindSafe for WorldgenPlacementModifierKind
impl Send for WorldgenPlacementModifierKind
impl Sync for WorldgenPlacementModifierKind
impl Unpin for WorldgenPlacementModifierKind
impl UnwindSafe for WorldgenPlacementModifierKind
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.