#[repr(u32)]pub enum MapDecorationKind {
Show 35 variants
Player = 0,
Frame = 1,
RedMarker = 2,
BlueMarker = 3,
TargetX = 4,
TargetPoint = 5,
PlayerOffMap = 6,
PlayerOffLimits = 7,
Mansion = 8,
Monument = 9,
BannerWhite = 10,
BannerOrange = 11,
BannerMagenta = 12,
BannerLightBlue = 13,
BannerYellow = 14,
BannerLime = 15,
BannerPink = 16,
BannerGray = 17,
BannerLightGray = 18,
BannerCyan = 19,
BannerPurple = 20,
BannerBlue = 21,
BannerBrown = 22,
BannerGreen = 23,
BannerRed = 24,
BannerBlack = 25,
RedX = 26,
VillageDesert = 27,
VillagePlains = 28,
VillageSavanna = 29,
VillageSnowy = 30,
VillageTaiga = 31,
JungleTemple = 32,
SwampHut = 33,
TrialChambers = 34,
}Variants§
Player = 0
Frame = 1
RedMarker = 2
BlueMarker = 3
TargetX = 4
TargetPoint = 5
PlayerOffMap = 6
PlayerOffLimits = 7
Mansion = 8
Monument = 9
BannerWhite = 10
BannerOrange = 11
BannerMagenta = 12
BannerLightBlue = 13
BannerYellow = 14
BannerLime = 15
BannerPink = 16
BannerGray = 17
BannerLightGray = 18
BannerCyan = 19
BannerPurple = 20
BannerBlue = 21
BannerBrown = 22
BannerGreen = 23
BannerRed = 24
BannerBlack = 25
RedX = 26
VillageDesert = 27
VillagePlains = 28
VillageSavanna = 29
VillageSnowy = 30
VillageTaiga = 31
JungleTemple = 32
SwampHut = 33
TrialChambers = 34
Implementations§
Source§impl MapDecorationKind
impl MapDecorationKind
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 MapDecorationKind
impl AzBuf for MapDecorationKind
fn azalea_write(&self, buf: &mut impl Write) -> Result<(), Error>
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl Clone for MapDecorationKind
impl Clone for MapDecorationKind
Source§fn clone(&self) -> MapDecorationKind
fn clone(&self) -> MapDecorationKind
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 MapDecorationKind
impl Debug for MapDecorationKind
Source§impl<'de> Deserialize<'de> for MapDecorationKind
Available on crate feature serde only.
impl<'de> Deserialize<'de> for MapDecorationKind
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 MapDecorationKind
Convert the value to a stringified identifier, formatted like
"minecraft:air".
impl Display for MapDecorationKind
Convert the value to a stringified identifier, formatted like
"minecraft:air".
Source§impl FromNbtTag for MapDecorationKind
impl FromNbtTag for MapDecorationKind
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for MapDecorationKind
Parse the value from a stringified identifier, formatted like
either "air" or "minecraft:air".
impl FromStr for MapDecorationKind
Parse the value from a stringified identifier, formatted like
either "air" or "minecraft:air".
Source§impl Hash for MapDecorationKind
impl Hash for MapDecorationKind
Source§impl Ord for MapDecorationKind
impl Ord for MapDecorationKind
Source§fn cmp(&self, other: &MapDecorationKind) -> Ordering
fn cmp(&self, other: &MapDecorationKind) -> 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 MapDecorationKind
impl PartialEq for MapDecorationKind
Source§impl PartialOrd for MapDecorationKind
impl PartialOrd for MapDecorationKind
Source§impl Registry for MapDecorationKind
impl Registry for MapDecorationKind
Source§impl Serialize for MapDecorationKind
Available on crate feature serde only.
impl Serialize for MapDecorationKind
Available on crate feature
serde only.Source§impl ToNbtTag for MapDecorationKind
impl ToNbtTag for MapDecorationKind
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl<'a> TryFrom<&'a Identifier> for MapDecorationKind
impl<'a> TryFrom<&'a Identifier> for MapDecorationKind
Source§impl TryFrom<u32> for MapDecorationKind
impl TryFrom<u32> for MapDecorationKind
impl Copy for MapDecorationKind
impl Eq for MapDecorationKind
impl StructuralPartialEq for MapDecorationKind
Auto Trait Implementations§
impl Freeze for MapDecorationKind
impl RefUnwindSafe for MapDecorationKind
impl Send for MapDecorationKind
impl Sync for MapDecorationKind
impl Unpin for MapDecorationKind
impl UnwindSafe for MapDecorationKind
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.