pub struct FloorHeightMap {
pub is_small_scale: bool,
pub fixed_walls_height: i32,
pub text: String,
}
Fields§
§is_small_scale: bool
§fixed_walls_height: i32
§text: String
Trait Implementations§
source§impl BaseParser for FloorHeightMap
impl BaseParser for FloorHeightMap
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 FloorHeightMap
impl Clone for FloorHeightMap
source§fn clone(&self) -> FloorHeightMap
fn clone(&self) -> FloorHeightMap
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 FloorHeightMap
impl Debug for FloorHeightMap
source§impl Default for FloorHeightMap
impl Default for FloorHeightMap
source§fn default() -> FloorHeightMap
fn default() -> FloorHeightMap
Returns the “default value” for a type. Read more
source§impl PacketVariable for FloorHeightMap
impl PacketVariable for FloorHeightMap
source§impl PartialEq<FloorHeightMap> for FloorHeightMap
impl PartialEq<FloorHeightMap> for FloorHeightMap
source§fn eq(&self, other: &FloorHeightMap) -> bool
fn eq(&self, other: &FloorHeightMap) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FloorHeightMap
Auto Trait Implementations§
impl RefUnwindSafe for FloorHeightMap
impl Send for FloorHeightMap
impl Sync for FloorHeightMap
impl Unpin for FloorHeightMap
impl UnwindSafe for FloorHeightMap
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