pub enum SupportLevel {
Full,
Alternate,
None,
}Expand description
Which projections implement which surface kind, and at what fidelity.
This is the support matrix that replaces the (unreachable) promise of universal feature-parity. “TUI has no force-directed Graph layout — it has a keyboard-navigable Tree projection of the same graph” is a documented design decision here, not a contract breach. Contract tests assert against this matrix, not against parity.
Variants§
Full
Full surface: the kind renders natively.
Alternate
Alternate projection: the same semantics, a different geometry (e.g. Graph → Tree).
None
Not supported by this projection.
Trait Implementations§
Source§impl Clone for SupportLevel
impl Clone for SupportLevel
Source§fn clone(&self) -> SupportLevel
fn clone(&self) -> SupportLevel
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 SupportLevel
Source§impl Debug for SupportLevel
impl Debug for SupportLevel
Source§impl<'de> Deserialize<'de> for SupportLevel
impl<'de> Deserialize<'de> for SupportLevel
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SupportLevel
Source§impl Hash for SupportLevel
impl Hash for SupportLevel
Source§impl PartialEq for SupportLevel
impl PartialEq for SupportLevel
Source§impl Serialize for SupportLevel
impl Serialize for SupportLevel
impl StructuralPartialEq for SupportLevel
Auto Trait Implementations§
impl Freeze for SupportLevel
impl RefUnwindSafe for SupportLevel
impl Send for SupportLevel
impl Sync for SupportLevel
impl Unpin for SupportLevel
impl UnsafeUnpin for SupportLevel
impl UnwindSafe for SupportLevel
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