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 copy 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<UpdateFloorProperties> for UpdateFloorProperties
impl PartialEq<UpdateFloorProperties> for UpdateFloorProperties
source§fn eq(&self, other: &UpdateFloorProperties) -> bool
fn eq(&self, other: &UpdateFloorProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateFloorProperties
Auto Trait Implementations§
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