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