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