pub enum DebugSubscriptionType {
Show 16 variants
DedicatedServerTickTime = 0,
Bee = 1,
VillagerBrain = 2,
Breeze = 3,
GoalSelector = 4,
EntityPath = 5,
EntityBlockIntersection = 6,
BeeHive = 7,
PointOfInterest = 8,
RedstoneWireOrientation = 9,
VillageSection = 10,
Raid = 11,
Structure = 12,
GameEventListener = 13,
NeighborUpdate = 14,
GameEvent = 15,
}Expand description
Numeric discriminator for a debug subscription payload.
Variants§
DedicatedServerTickTime = 0
Dedicated server tick-time information with no payload fields.
Bee = 1
Bee navigation and hive information.
VillagerBrain = 2
Villager brain state.
Breeze = 3
Breeze combat and jump targets.
GoalSelector = 4
One entity goal-selector entry.
EntityPath = 5
One entity path.
EntityBlockIntersection = 6
How an entity intersects its current block or fluid.
BeeHive = 7
Bee-hive state.
PointOfInterest = 8
Point-of-interest state.
RedstoneWireOrientation = 9
Redstone-wire orientation.
VillageSection = 10
Village-section information with no payload fields.
Raid = 11
Raid center positions.
Structure = 12
Structure bounding boxes and pieces.
GameEventListener = 13
Game-event listener radius.
NeighborUpdate = 14
Neighbor-update position.
GameEvent = 15
A game event and its world-space coordinates.
Trait Implementations§
Source§impl Clone for DebugSubscriptionType
impl Clone for DebugSubscriptionType
Source§fn clone(&self) -> DebugSubscriptionType
fn clone(&self) -> DebugSubscriptionType
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 moreimpl Copy for DebugSubscriptionType
Source§impl Debug for DebugSubscriptionType
impl Debug for DebugSubscriptionType
impl Eq for DebugSubscriptionType
Source§impl Hash for DebugSubscriptionType
impl Hash for DebugSubscriptionType
Source§impl PartialEq for DebugSubscriptionType
impl PartialEq for DebugSubscriptionType
Source§impl ProtocolEnum for DebugSubscriptionType
impl ProtocolEnum for DebugSubscriptionType
impl StructuralPartialEq for DebugSubscriptionType
Auto Trait Implementations§
impl Freeze for DebugSubscriptionType
impl RefUnwindSafe for DebugSubscriptionType
impl Send for DebugSubscriptionType
impl Sync for DebugSubscriptionType
impl Unpin for DebugSubscriptionType
impl UnsafeUnpin for DebugSubscriptionType
impl UnwindSafe for DebugSubscriptionType
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,
Source§impl<T> ContextualCodec for Twhere
T: TypeCodec,
impl<T> ContextualCodec for Twhere
T: TypeCodec,
Source§fn encode_with_context(
&self,
writer: &mut impl Write,
_context: &Context,
) -> Result<(), CodecError>
fn encode_with_context( &self, writer: &mut impl Write, _context: &Context, ) -> Result<(), CodecError>
Encodes this value using context supplied by its enclosing structure.
Source§fn decode_with_context(
reader: &mut impl Read,
_context: &Context,
) -> Result<T, CodecError>where
T: Sized,
fn decode_with_context(
reader: &mut impl Read,
_context: &Context,
) -> Result<T, CodecError>where
T: Sized,
Decodes this value using context supplied by its enclosing structure.