pub struct PlayEntityActionSpec {
pub entity_id: VarInt,
pub action: EntityActionKind,
pub jump_boot: VarInt,
}
Fields§
§entity_id: VarInt
§action: EntityActionKind
§jump_boot: VarInt
Trait Implementations§
Source§impl Clone for PlayEntityActionSpec
impl Clone for PlayEntityActionSpec
Source§fn clone(&self) -> PlayEntityActionSpec
fn clone(&self) -> PlayEntityActionSpec
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 PlayEntityActionSpec
impl Debug for PlayEntityActionSpec
Source§impl Deserialize for PlayEntityActionSpec
impl Deserialize for PlayEntityActionSpec
fn mc_deserialize(_rest: &[u8]) -> DeserializeResult<'_, Self>
Source§impl From<(VarInt, EntityActionKind, VarInt)> for PlayEntityActionSpec
impl From<(VarInt, EntityActionKind, VarInt)> for PlayEntityActionSpec
Source§impl From<PlayEntityActionSpec> for (VarInt, EntityActionKind, VarInt)
impl From<PlayEntityActionSpec> for (VarInt, EntityActionKind, VarInt)
Source§fn from(other: PlayEntityActionSpec) -> Self
fn from(other: PlayEntityActionSpec) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PlayEntityActionSpec
impl PartialEq for PlayEntityActionSpec
Source§impl Serialize for PlayEntityActionSpec
impl Serialize for PlayEntityActionSpec
fn mc_serialize<S: Serializer>(&self, to: &mut S) -> SerializeResult
impl StructuralPartialEq for PlayEntityActionSpec
Auto Trait Implementations§
impl Freeze for PlayEntityActionSpec
impl RefUnwindSafe for PlayEntityActionSpec
impl Send for PlayEntityActionSpec
impl Sync for PlayEntityActionSpec
impl Unpin for PlayEntityActionSpec
impl UnwindSafe for PlayEntityActionSpec
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