pub struct Symbol {
pub left: &'static str,
pub center: &'static str,
pub right: &'static str,
}Expand description
Symbols for the 5-character symbol column.
Format: | left(2) | center(1) | right(2) |
Used in both dump (nav symbols) and trace (nav, match, effect symbols).
Fields§
§left: &'static strLeft modifier (2 chars): mode indicator or spaces. Examples: “ “, “ !”, “!!”
center: &'static strCenter symbol (1 char): direction or status. Examples: “ε”, “▽”, “▷”, “△”, “●”, “○”, “⬥”, “▶”, “◀”
right: &'static strRight suffix (2 chars): level or spaces. Examples: “ “, “¹ “, “¹²”
Implementations§
Trait Implementations§
impl Copy for Symbol
Auto Trait Implementations§
impl Freeze for Symbol
impl RefUnwindSafe for Symbol
impl Send for Symbol
impl Sync for Symbol
impl Unpin for Symbol
impl UnwindSafe for Symbol
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