pub struct WiredWallItemMove {
pub id: LegacyId,
pub is_direction_right: bool,
pub old_wall_x: i32,
pub old_wall_y: i32,
pub old_offset_x: i32,
pub old_offset_y: i32,
pub new_wall_x: i32,
pub new_wall_y: i32,
pub new_offset_x: i32,
pub new_offset_y: i32,
pub animation_time: i32,
}
Fields§
§id: LegacyId
§is_direction_right: bool
§old_wall_x: i32
§old_wall_y: i32
§old_offset_x: i32
§old_offset_y: i32
§new_wall_x: i32
§new_wall_y: i32
§new_offset_x: i32
§new_offset_y: i32
§animation_time: i32
Trait Implementations§
Source§impl BaseParser for WiredWallItemMove
impl BaseParser for WiredWallItemMove
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 WiredWallItemMove
impl Clone for WiredWallItemMove
Source§fn clone(&self) -> WiredWallItemMove
fn clone(&self) -> WiredWallItemMove
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 WiredWallItemMove
impl Debug for WiredWallItemMove
Source§impl Default for WiredWallItemMove
impl Default for WiredWallItemMove
Source§fn default() -> WiredWallItemMove
fn default() -> WiredWallItemMove
Returns the “default value” for a type. Read more
Source§impl PacketVariable for WiredWallItemMove
impl PacketVariable for WiredWallItemMove
Source§impl PartialEq for WiredWallItemMove
impl PartialEq for WiredWallItemMove
impl StructuralPartialEq for WiredWallItemMove
Auto Trait Implementations§
impl Freeze for WiredWallItemMove
impl RefUnwindSafe for WiredWallItemMove
impl Send for WiredWallItemMove
impl Sync for WiredWallItemMove
impl Unpin for WiredWallItemMove
impl UnwindSafe for WiredWallItemMove
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