pub struct RoomEntryTile {
pub x: i32,
pub y: i32,
pub dir: i32,
}
Fields§
§x: i32
§y: i32
§dir: i32
Trait Implementations§
Source§impl BaseParser for RoomEntryTile
impl BaseParser for RoomEntryTile
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 RoomEntryTile
impl Clone for RoomEntryTile
Source§fn clone(&self) -> RoomEntryTile
fn clone(&self) -> RoomEntryTile
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 RoomEntryTile
impl Debug for RoomEntryTile
Source§impl Default for RoomEntryTile
impl Default for RoomEntryTile
Source§fn default() -> RoomEntryTile
fn default() -> RoomEntryTile
Returns the “default value” for a type. Read more
Source§impl PacketVariable for RoomEntryTile
impl PacketVariable for RoomEntryTile
Source§impl PartialEq for RoomEntryTile
impl PartialEq for RoomEntryTile
impl StructuralPartialEq for RoomEntryTile
Auto Trait Implementations§
impl Freeze for RoomEntryTile
impl RefUnwindSafe for RoomEntryTile
impl Send for RoomEntryTile
impl Sync for RoomEntryTile
impl Unpin for RoomEntryTile
impl UnwindSafe for RoomEntryTile
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