pub struct HeightMaps {
pub motion_blocking: Vec<i64>,
pub motion_blocking_no_leaves: Vec<i64>,
pub ocean_floor: Vec<i64>,
pub ocean_floor_wg: Vec<i64>,
pub world_surface: Vec<i64>,
pub world_surface_wg: Vec<i64>,
}
Fields§
§motion_blocking: Vec<i64>
MOTION_BLOCKING
motion_blocking_no_leaves: Vec<i64>
MOTION_BLOCKING_NO_LEAVES
ocean_floor: Vec<i64>
OCEAN_FLOOR
ocean_floor_wg: Vec<i64>
OCEAN_FLOOR_WG
world_surface: Vec<i64>
WORLD_SURFACE
world_surface_wg: Vec<i64>
WORLD_SURFACE_WG
Trait Implementations§
Source§impl Clone for HeightMaps
impl Clone for HeightMaps
Source§fn clone(&self) -> HeightMaps
fn clone(&self) -> HeightMaps
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 HeightMaps
impl Debug for HeightMaps
Source§impl FromCompoundNbt for HeightMaps
impl FromCompoundNbt for HeightMaps
fn from_compound_nbt(nbt: &NbtCompound<'_, '_>) -> Result<Self, SculkParseError>where
Self: Sized,
Source§impl PartialEq for HeightMaps
impl PartialEq for HeightMaps
impl StructuralPartialEq for HeightMaps
Auto Trait Implementations§
impl Freeze for HeightMaps
impl RefUnwindSafe for HeightMaps
impl Send for HeightMaps
impl Sync for HeightMaps
impl Unpin for HeightMaps
impl UnwindSafe for HeightMaps
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