#[repr(u32)]pub enum DebugSubscription {
Show 16 variants
DedicatedServerTickTime = 0,
Bees = 1,
Brains = 2,
Breezes = 3,
GoalSelectors = 4,
EntityPaths = 5,
EntityBlockIntersections = 6,
BeeHives = 7,
Pois = 8,
RedstoneWireOrientations = 9,
VillageSections = 10,
Raids = 11,
Structures = 12,
GameEventListeners = 13,
NeighborUpdates = 14,
GameEvents = 15,
}
Variants§
DedicatedServerTickTime = 0
Bees = 1
Brains = 2
Breezes = 3
GoalSelectors = 4
EntityPaths = 5
EntityBlockIntersections = 6
BeeHives = 7
Pois = 8
RedstoneWireOrientations = 9
VillageSections = 10
Raids = 11
Structures = 12
GameEventListeners = 13
NeighborUpdates = 14
GameEvents = 15
Implementations§
Source§impl DebugSubscription
impl DebugSubscription
pub fn azalea_read_id( buf: &mut Cursor<&[u8]>, id: u32, ) -> Result<Self, BufReadError>
Source§impl DebugSubscription
impl DebugSubscription
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 DebugSubscription
impl AzaleaRead for DebugSubscription
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl AzaleaWrite for DebugSubscription
impl AzaleaWrite for DebugSubscription
Source§impl Clone for DebugSubscription
impl Clone for DebugSubscription
Source§fn clone(&self) -> DebugSubscription
fn clone(&self) -> DebugSubscription
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 DebugSubscription
impl Debug for DebugSubscription
Source§impl<'de> Deserialize<'de> for DebugSubscription
Available on crate feature serde
only.
impl<'de> Deserialize<'de> for DebugSubscription
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 DebugSubscription
impl Display for DebugSubscription
Source§impl FromNbtTag for DebugSubscription
impl FromNbtTag for DebugSubscription
fn from_nbt_tag(tag: NbtTag<'_, '_>) -> Option<Self>
fn from_optional_nbt_tag( tag: Option<NbtTag<'_, '_>>, ) -> Result<Option<Self>, DeserializeError>
Source§impl FromStr for DebugSubscription
impl FromStr for DebugSubscription
Source§impl Hash for DebugSubscription
impl Hash for DebugSubscription
Source§impl PartialEq for DebugSubscription
impl PartialEq for DebugSubscription
Source§impl Registry for DebugSubscription
impl Registry for DebugSubscription
Source§impl Serialize for DebugSubscription
Available on crate feature serde
only.
impl Serialize for DebugSubscription
Available on crate feature
serde
only.Source§impl ToNbtTag for DebugSubscription
impl ToNbtTag for DebugSubscription
fn to_nbt_tag(self) -> NbtTag
fn to_optional_nbt_tag(self) -> Option<NbtTag>
Source§impl TryFrom<u32> for DebugSubscription
impl TryFrom<u32> for DebugSubscription
impl Copy for DebugSubscription
impl Eq for DebugSubscription
impl StructuralPartialEq for DebugSubscription
Auto Trait Implementations§
impl Freeze for DebugSubscription
impl RefUnwindSafe for DebugSubscription
impl Send for DebugSubscription
impl Sync for DebugSubscription
impl Unpin for DebugSubscription
impl UnwindSafe for DebugSubscription
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.