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 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 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 for FloorHeightMap
impl PartialEq for FloorHeightMap
impl StructuralPartialEq for FloorHeightMap
Auto Trait Implementations§
impl Freeze for FloorHeightMap
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