#[repr(u32)]pub enum WorldgenTreeDecoratorKind {
TrunkVine = 0,
LeaveVine = 1,
PaleMoss = 2,
CreakingHeart = 3,
Cocoa = 4,
Beehive = 5,
AlterGround = 6,
AttachedToLeaves = 7,
PlaceOnGround = 8,
AttachedToLogs = 9,
}
Variants§
TrunkVine = 0
LeaveVine = 1
PaleMoss = 2
CreakingHeart = 3
Cocoa = 4
Beehive = 5
AlterGround = 6
AttachedToLeaves = 7
PlaceOnGround = 8
AttachedToLogs = 9
Implementations§
Source§impl WorldgenTreeDecoratorKind
impl WorldgenTreeDecoratorKind
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 WorldgenTreeDecoratorKind
impl AzaleaRead for WorldgenTreeDecoratorKind
Source§impl AzaleaWrite for WorldgenTreeDecoratorKind
impl AzaleaWrite for WorldgenTreeDecoratorKind
Source§impl Clone for WorldgenTreeDecoratorKind
impl Clone for WorldgenTreeDecoratorKind
Source§fn clone(&self) -> WorldgenTreeDecoratorKind
fn clone(&self) -> WorldgenTreeDecoratorKind
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 WorldgenTreeDecoratorKind
impl Debug for WorldgenTreeDecoratorKind
Source§impl<'de> Deserialize<'de> for WorldgenTreeDecoratorKind
impl<'de> Deserialize<'de> for WorldgenTreeDecoratorKind
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 WorldgenTreeDecoratorKind
impl Display for WorldgenTreeDecoratorKind
Source§impl FromNbtTag for WorldgenTreeDecoratorKind
impl FromNbtTag for WorldgenTreeDecoratorKind
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for WorldgenTreeDecoratorKind
impl FromStr for WorldgenTreeDecoratorKind
Source§impl Hash for WorldgenTreeDecoratorKind
impl Hash for WorldgenTreeDecoratorKind
Source§impl PartialEq for WorldgenTreeDecoratorKind
impl PartialEq for WorldgenTreeDecoratorKind
Source§fn eq(&self, other: &WorldgenTreeDecoratorKind) -> bool
fn eq(&self, other: &WorldgenTreeDecoratorKind) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl Registry for WorldgenTreeDecoratorKind
impl Registry for WorldgenTreeDecoratorKind
Source§impl ToNbtTag for WorldgenTreeDecoratorKind
impl ToNbtTag for WorldgenTreeDecoratorKind
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl TryFrom<u32> for WorldgenTreeDecoratorKind
impl TryFrom<u32> for WorldgenTreeDecoratorKind
impl Copy for WorldgenTreeDecoratorKind
impl Eq for WorldgenTreeDecoratorKind
impl StructuralPartialEq for WorldgenTreeDecoratorKind
Auto Trait Implementations§
impl Freeze for WorldgenTreeDecoratorKind
impl RefUnwindSafe for WorldgenTreeDecoratorKind
impl Send for WorldgenTreeDecoratorKind
impl Sync for WorldgenTreeDecoratorKind
impl Unpin for WorldgenTreeDecoratorKind
impl UnwindSafe for WorldgenTreeDecoratorKind
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