pub enum ChunkDetail {
Near,
Far,
}Expand description
Which representation a chunk is streamed at.
Variants§
Near
Full voxel geometry for chunks within near_radius.
Far
A coarse distant-impostor surface mesh for chunks beyond near_radius but
within far_radius.
Trait Implementations§
Source§impl Clone for ChunkDetail
impl Clone for ChunkDetail
Source§fn clone(&self) -> ChunkDetail
fn clone(&self) -> ChunkDetail
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ChunkDetail
Source§impl Debug for ChunkDetail
impl Debug for ChunkDetail
impl Eq for ChunkDetail
Source§impl PartialEq for ChunkDetail
impl PartialEq for ChunkDetail
impl StructuralPartialEq for ChunkDetail
Auto Trait Implementations§
impl Freeze for ChunkDetail
impl RefUnwindSafe for ChunkDetail
impl Send for ChunkDetail
impl Sync for ChunkDetail
impl Unpin for ChunkDetail
impl UnsafeUnpin for ChunkDetail
impl UnwindSafe for ChunkDetail
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.