Struct level_lib::anvil::region::chunk::chunk_data::structure::BasicStructureData
source · pub struct BasicStructureData {
pub bounding_box: [i32; 6],
pub biome: String,
pub chunk_x: i32,
pub chunk_z: i32,
pub id: String,
}Expand description
A struct for structure data
Fields§
§bounding_box: [i32; 6]The six coordinated of the bounding box lower x, y, z and upper x, y, z
biome: StringThe biome id the structure is in
chunk_x: i32The chunk x coordinate of this structure
chunk_z: i32The chunk z coordinate of this structure
id: StringThe id of the structure
Implementations§
Trait Implementations§
source§impl Debug for BasicStructureData
impl Debug for BasicStructureData
source§impl PartialEq for BasicStructureData
impl PartialEq for BasicStructureData
source§fn eq(&self, other: &BasicStructureData) -> bool
fn eq(&self, other: &BasicStructureData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BasicStructureData
Auto Trait Implementations§
impl Freeze for BasicStructureData
impl RefUnwindSafe for BasicStructureData
impl Send for BasicStructureData
impl Sync for BasicStructureData
impl Unpin for BasicStructureData
impl UnwindSafe for BasicStructureData
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