pub struct WiredFurniMove {
pub old_x: i32,
pub old_y: i32,
pub new_x: i32,
pub new_y: i32,
pub old_z: LegacyDouble,
pub new_z: LegacyDouble,
pub furni_id: LegacyId,
pub animation_time: i32,
}
Fields§
§old_x: i32
§old_y: i32
§new_x: i32
§new_y: i32
§old_z: LegacyDouble
§new_z: LegacyDouble
§furni_id: LegacyId
§animation_time: i32
Trait Implementations§
Source§impl BaseParser for WiredFurniMove
impl BaseParser for WiredFurniMove
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
Source§impl Clone for WiredFurniMove
impl Clone for WiredFurniMove
Source§fn clone(&self) -> WiredFurniMove
fn clone(&self) -> WiredFurniMove
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 WiredFurniMove
impl Debug for WiredFurniMove
Source§impl Default for WiredFurniMove
impl Default for WiredFurniMove
Source§fn default() -> WiredFurniMove
fn default() -> WiredFurniMove
Returns the “default value” for a type. Read more
Source§impl PacketVariable for WiredFurniMove
impl PacketVariable for WiredFurniMove
Source§impl PartialEq for WiredFurniMove
impl PartialEq for WiredFurniMove
impl StructuralPartialEq for WiredFurniMove
Auto Trait Implementations§
impl Freeze for WiredFurniMove
impl RefUnwindSafe for WiredFurniMove
impl Send for WiredFurniMove
impl Sync for WiredFurniMove
impl Unpin for WiredFurniMove
impl UnwindSafe for WiredFurniMove
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