#[repr(u32)]pub enum WorldgenPoolAliasBinding {
Random = 0,
RandomGroup = 1,
Direct = 2,
}
Variants§
Implementations§
Source§impl WorldgenPoolAliasBinding
impl WorldgenPoolAliasBinding
pub fn azalea_read_id( buf: &mut Cursor<&[u8]>, id: u32, ) -> Result<Self, BufReadError>
Source§impl WorldgenPoolAliasBinding
impl WorldgenPoolAliasBinding
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 WorldgenPoolAliasBinding
impl AzaleaRead for WorldgenPoolAliasBinding
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl Clone for WorldgenPoolAliasBinding
impl Clone for WorldgenPoolAliasBinding
Source§fn clone(&self) -> WorldgenPoolAliasBinding
fn clone(&self) -> WorldgenPoolAliasBinding
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 WorldgenPoolAliasBinding
impl Debug for WorldgenPoolAliasBinding
Source§impl<'de> Deserialize<'de> for WorldgenPoolAliasBinding
Available on crate feature serde
only.
impl<'de> Deserialize<'de> for WorldgenPoolAliasBinding
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 WorldgenPoolAliasBinding
impl Display for WorldgenPoolAliasBinding
Source§impl FromNbtTag for WorldgenPoolAliasBinding
impl FromNbtTag for WorldgenPoolAliasBinding
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for WorldgenPoolAliasBinding
impl FromStr for WorldgenPoolAliasBinding
Source§impl Hash for WorldgenPoolAliasBinding
impl Hash for WorldgenPoolAliasBinding
Source§impl PartialEq for WorldgenPoolAliasBinding
impl PartialEq for WorldgenPoolAliasBinding
Source§impl Registry for WorldgenPoolAliasBinding
impl Registry for WorldgenPoolAliasBinding
Source§impl Serialize for WorldgenPoolAliasBinding
Available on crate feature serde
only.
impl Serialize for WorldgenPoolAliasBinding
Available on crate feature
serde
only.Source§impl ToNbtTag for WorldgenPoolAliasBinding
impl ToNbtTag for WorldgenPoolAliasBinding
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl TryFrom<u32> for WorldgenPoolAliasBinding
impl TryFrom<u32> for WorldgenPoolAliasBinding
impl Copy for WorldgenPoolAliasBinding
impl Eq for WorldgenPoolAliasBinding
impl StructuralPartialEq for WorldgenPoolAliasBinding
Auto Trait Implementations§
impl Freeze for WorldgenPoolAliasBinding
impl RefUnwindSafe for WorldgenPoolAliasBinding
impl Send for WorldgenPoolAliasBinding
impl Sync for WorldgenPoolAliasBinding
impl Unpin for WorldgenPoolAliasBinding
impl UnwindSafe for WorldgenPoolAliasBinding
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> 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.