pub enum ChunkClassification {
Dna = 0,
Context = 1,
Pointer = 2,
Reserved = 3,
}Expand description
Chunk classification, stored in bits 0–1 of SectionEntry.flags.
Variants§
Dna = 0
Core project identity (project, stack, human_context, …).
Context = 1
Runtime/supplementary context.
Pointer = 2
Documentation references (docs).
Reserved = 3
Reserved for future use.
Implementations§
Trait Implementations§
Source§impl Clone for ChunkClassification
impl Clone for ChunkClassification
Source§fn clone(&self) -> ChunkClassification
fn clone(&self) -> ChunkClassification
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 ChunkClassification
Source§impl Debug for ChunkClassification
impl Debug for ChunkClassification
impl Eq for ChunkClassification
Source§impl PartialEq for ChunkClassification
impl PartialEq for ChunkClassification
Source§fn eq(&self, other: &ChunkClassification) -> bool
fn eq(&self, other: &ChunkClassification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ChunkClassification
Auto Trait Implementations§
impl Freeze for ChunkClassification
impl RefUnwindSafe for ChunkClassification
impl Send for ChunkClassification
impl Sync for ChunkClassification
impl Unpin for ChunkClassification
impl UnsafeUnpin for ChunkClassification
impl UnwindSafe for ChunkClassification
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§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.