pub enum DebugSubscriptionEvent {
Show 16 variants
DedicatedServerTickTime(()),
Bees(DebugBeeInfo),
Brains(DebugBrainDump),
Breezes(DebugBreezeInfo),
GoalSelectors(DebugGoalInfo),
EntityPaths(DebugPathInfo),
EntityBlockIntersections(DebugEntityBlockIntersection),
BeeHives(DebugHiveInfo),
Pois(DebugPoiInfo),
RedstoneWireOrientations(DebugRedstoneOrientation),
VillageSections(()),
Raids(Vec<BlockPos>),
Structures(Vec<DebugStructureInfo>),
GameEventListeners(DebugGameEventListenerInfo),
NeighborUpdates(BlockPos),
GameEvents(DebugGameEventInfo),
}Variants§
DedicatedServerTickTime(())
Bees(DebugBeeInfo)
Brains(DebugBrainDump)
Breezes(DebugBreezeInfo)
GoalSelectors(DebugGoalInfo)
EntityPaths(DebugPathInfo)
EntityBlockIntersections(DebugEntityBlockIntersection)
BeeHives(DebugHiveInfo)
Pois(DebugPoiInfo)
RedstoneWireOrientations(DebugRedstoneOrientation)
VillageSections(())
Raids(Vec<BlockPos>)
Structures(Vec<DebugStructureInfo>)
GameEventListeners(DebugGameEventListenerInfo)
NeighborUpdates(BlockPos)
GameEvents(DebugGameEventInfo)
Implementations§
Source§impl DebugSubscriptionEvent
impl DebugSubscriptionEvent
pub fn matches_registry_variant(&self, kind: DebugSubscription) -> bool
Trait Implementations§
Source§impl AzBuf for DebugSubscriptionEvent
impl AzBuf for DebugSubscriptionEvent
fn azalea_write(&self, buf: &mut impl Write) -> Result<(), Error>
fn azalea_read(buf: &mut Cursor<&[u8]>) -> Result<Self, BufReadError>
Source§impl Clone for DebugSubscriptionEvent
impl Clone for DebugSubscriptionEvent
Source§fn clone(&self) -> DebugSubscriptionEvent
fn clone(&self) -> DebugSubscriptionEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DebugSubscriptionEvent
impl Debug for DebugSubscriptionEvent
Source§impl PartialEq for DebugSubscriptionEvent
impl PartialEq for DebugSubscriptionEvent
Source§fn eq(&self, other: &DebugSubscriptionEvent) -> bool
fn eq(&self, other: &DebugSubscriptionEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DebugSubscriptionEvent
Auto Trait Implementations§
impl Freeze for DebugSubscriptionEvent
impl RefUnwindSafe for DebugSubscriptionEvent
impl Send for DebugSubscriptionEvent
impl Sync for DebugSubscriptionEvent
impl Unpin for DebugSubscriptionEvent
impl UnsafeUnpin for DebugSubscriptionEvent
impl UnwindSafe for DebugSubscriptionEvent
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