pub enum ResolutionTier {
L0Summary,
L1CausalSpine,
L2EvidencePack,
}Expand description
Resolution tier for multi-resolution bundle rendering.
Bundles are assembled in three tiers of decreasing criticality:
- L0: compact summary (~100 tokens) — always fits
- L1: causal spine (~500 tokens) — root + focus + causal chain
- L2: evidence pack — remaining budget fills with details and structural data
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ResolutionTier
impl Clone for ResolutionTier
Source§fn clone(&self) -> ResolutionTier
fn clone(&self) -> ResolutionTier
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 ResolutionTier
Source§impl Debug for ResolutionTier
impl Debug for ResolutionTier
impl Eq for ResolutionTier
Source§impl Hash for ResolutionTier
impl Hash for ResolutionTier
Source§impl Ord for ResolutionTier
impl Ord for ResolutionTier
Source§fn cmp(&self, other: &ResolutionTier) -> Ordering
fn cmp(&self, other: &ResolutionTier) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResolutionTier
impl PartialEq for ResolutionTier
Source§impl PartialOrd for ResolutionTier
impl PartialOrd for ResolutionTier
impl StructuralPartialEq for ResolutionTier
Auto Trait Implementations§
impl Freeze for ResolutionTier
impl RefUnwindSafe for ResolutionTier
impl Send for ResolutionTier
impl Sync for ResolutionTier
impl Unpin for ResolutionTier
impl UnsafeUnpin for ResolutionTier
impl UnwindSafe for ResolutionTier
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