pub struct ClientsideUpdateEntityPos {
pub entity_id: i32,
pub delta_x: i16,
pub delta_y: i16,
pub delta_z: i16,
pub on_ground: bool,
}Fields§
§entity_id: i32§delta_x: i16§delta_y: i16§delta_z: i16§on_ground: boolImplementations§
Trait Implementations§
Source§impl Clone for ClientsideUpdateEntityPos
impl Clone for ClientsideUpdateEntityPos
Source§fn clone(&self) -> ClientsideUpdateEntityPos
fn clone(&self) -> ClientsideUpdateEntityPos
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 ClientsideUpdateEntityPos
impl Debug for ClientsideUpdateEntityPos
Source§impl IntoPacket<ClientsidePlayPacket> for ClientsideUpdateEntityPos
impl IntoPacket<ClientsidePlayPacket> for ClientsideUpdateEntityPos
fn into_packet(self) -> ClientsidePlayPacket
Source§impl PartialEq for ClientsideUpdateEntityPos
impl PartialEq for ClientsideUpdateEntityPos
Source§fn eq(&self, other: &ClientsideUpdateEntityPos) -> bool
fn eq(&self, other: &ClientsideUpdateEntityPos) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClientsideUpdateEntityPos
Auto Trait Implementations§
impl Freeze for ClientsideUpdateEntityPos
impl RefUnwindSafe for ClientsideUpdateEntityPos
impl Send for ClientsideUpdateEntityPos
impl Sync for ClientsideUpdateEntityPos
impl Unpin for ClientsideUpdateEntityPos
impl UnsafeUnpin for ClientsideUpdateEntityPos
impl UnwindSafe for ClientsideUpdateEntityPos
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