pub enum ChunkClassification {
Dna = 0,
Context = 1,
Pointer = 2,
Reserved = 3,
}Expand description
Chunk classification for v2 binary format
Stored in bits 0-1 of SectionEntry.flags:
0b00= DNA (core project identity)0b01= Context (runtime/supplementary)0b10= Pointer (documentation references)0b11= Reserved
Variants§
Dna = 0
Core project identity (project, tech_stack, commands, etc.)
Context = 1
Runtime/supplementary context
Pointer = 2
Documentation pointer (e.g., “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 · 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 ChunkClassification
impl Debug for ChunkClassification
Source§impl PartialEq for ChunkClassification
impl PartialEq for ChunkClassification
impl Copy for ChunkClassification
impl Eq for ChunkClassification
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.