pub enum VisualRepresentation {
Text(String),
Tree(TreeValue),
FeatureStructure(FeatureStructure),
}Expand description
GUI-neutral preferred representation of an algebra value.
Variants§
Text(String)
Plain textual display.
Tree(TreeValue)
A structured tree.
FeatureStructure(FeatureStructure)
A structured feature structure.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for VisualRepresentation
impl RefUnwindSafe for VisualRepresentation
impl Send for VisualRepresentation
impl Sync for VisualRepresentation
impl Unpin for VisualRepresentation
impl UnsafeUnpin for VisualRepresentation
impl UnwindSafe for VisualRepresentation
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