pub struct ChunkIdentifier(/* private fields */);
Expand description
The unique identifier of a chunk in a LinkedChunk
.
It is not the position of the chunk, just its unique identifier.
Learn more with [ChunkIdentifierGenerator
].
Trait Implementations§
Source§impl Clone for ChunkIdentifier
impl Clone for ChunkIdentifier
Source§fn clone(&self) -> ChunkIdentifier
fn clone(&self) -> ChunkIdentifier
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 ChunkIdentifier
impl Debug for ChunkIdentifier
Source§impl PartialEq<u64> for ChunkIdentifier
impl PartialEq<u64> for ChunkIdentifier
Source§impl PartialEq for ChunkIdentifier
impl PartialEq for ChunkIdentifier
impl Copy for ChunkIdentifier
impl StructuralPartialEq for ChunkIdentifier
Auto Trait Implementations§
impl Freeze for ChunkIdentifier
impl RefUnwindSafe for ChunkIdentifier
impl Send for ChunkIdentifier
impl Sync for ChunkIdentifier
impl Unpin for ChunkIdentifier
impl UnwindSafe for ChunkIdentifier
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