pub struct UpdateFloorProperties {
pub data: String,
pub entry_point_x: i32,
pub entry_point_y: i32,
pub entry_point_dir: i32,
pub wall_thickness: i32,
pub floor_thickness: i32,
pub fixed_walls_height: i32,
}
Fields§
§data: String
§entry_point_x: i32
§entry_point_y: i32
§entry_point_dir: i32
§wall_thickness: i32
§floor_thickness: i32
§fixed_walls_height: i32
Trait Implementations§
Source§impl BaseParser for UpdateFloorProperties
impl BaseParser for UpdateFloorProperties
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 UpdateFloorProperties
impl Clone for UpdateFloorProperties
Source§fn clone(&self) -> UpdateFloorProperties
fn clone(&self) -> UpdateFloorProperties
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 UpdateFloorProperties
impl Debug for UpdateFloorProperties
Source§impl Default for UpdateFloorProperties
impl Default for UpdateFloorProperties
Source§fn default() -> UpdateFloorProperties
fn default() -> UpdateFloorProperties
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateFloorProperties
impl PartialEq for UpdateFloorProperties
impl StructuralPartialEq for UpdateFloorProperties
Auto Trait Implementations§
impl Freeze for UpdateFloorProperties
impl RefUnwindSafe for UpdateFloorProperties
impl Send for UpdateFloorProperties
impl Sync for UpdateFloorProperties
impl Unpin for UpdateFloorProperties
impl UnwindSafe for UpdateFloorProperties
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