pub struct ClientsideExplosion {
pub position: Vector3,
pub radius: f32,
pub block_count: i32,
pub player_delta_velocity: Option<Vector3>,
pub explosion_particle_id: i32,
}Fields§
§position: Vector3§radius: f32§block_count: i32§player_delta_velocity: Option<Vector3>§explosion_particle_id: i32Implementations§
Trait Implementations§
Source§impl Clone for ClientsideExplosion
impl Clone for ClientsideExplosion
Source§fn clone(&self) -> ClientsideExplosion
fn clone(&self) -> ClientsideExplosion
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 ClientsideExplosion
impl Debug for ClientsideExplosion
Source§impl IntoPacket<ClientsidePlayPacket> for ClientsideExplosion
impl IntoPacket<ClientsidePlayPacket> for ClientsideExplosion
fn into_packet(self) -> ClientsidePlayPacket
Source§impl PartialEq for ClientsideExplosion
impl PartialEq for ClientsideExplosion
Source§fn eq(&self, other: &ClientsideExplosion) -> bool
fn eq(&self, other: &ClientsideExplosion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClientsideExplosion
Auto Trait Implementations§
impl Freeze for ClientsideExplosion
impl RefUnwindSafe for ClientsideExplosion
impl Send for ClientsideExplosion
impl Sync for ClientsideExplosion
impl Unpin for ClientsideExplosion
impl UnsafeUnpin for ClientsideExplosion
impl UnwindSafe for ClientsideExplosion
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