pub struct Region {
pub chunks: Vec<Option<Chunk>>,
pub region_x: i64,
pub region_z: i64,
pub timestamps: Vec<i32>,
pub newest_timestamp: i64,
}Fields§
§chunks: Vec<Option<Chunk>>§region_x: i64§region_z: i64§timestamps: Vec<i32>§newest_timestamp: i64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Region
impl RefUnwindSafe for Region
impl Send for Region
impl Sync for Region
impl Unpin for Region
impl UnwindSafe for Region
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