[][src]Struct redo::Display

pub struct Display<'a, T> { /* fields omitted */ }

Configurable display formatting of structures.

Examples

let history = History::default();
println!(
    "{}",
    history.display().graph(true).colored(true).ligatures(true)
);

Methods

impl<T, '_> Display<'_, T>
[src]

pub fn colored(&mut self, on: bool) -> &mut Self
[src]

Show colored output (off by default).

pub fn current(&mut self, on: bool) -> &mut Self
[src]

Show the current position in the output (on by default).

pub fn detailed(&mut self, on: bool) -> &mut Self
[src]

Show detailed output (on by default).

pub fn ligatures(&mut self, on: bool) -> &mut Self
[src]

Use ligature (unicode) in the output (off by default).

The ligatures only works as expected with monospaced fonts.

pub fn position(&mut self, on: bool) -> &mut Self
[src]

Show the position of the command (on by default).

pub fn saved(&mut self, on: bool) -> &mut Self
[src]

Show the saved command (on by default).

impl<R, C: Command<R>, '_> Display<'_, History<R, C>>
[src]

pub fn graph(&mut self, on: bool) -> &mut Self
[src]

Show the history as a graph (off by default).

Trait Implementations

impl<'a, T> From<&'a T> for Display<'a, T>
[src]

impl<'a, T: Copy> Copy for Display<'a, T>
[src]

impl<'a, T: Clone> Clone for Display<'a, T>
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a, T: Debug> Debug for Display<'a, T>
[src]

impl<R, C: Command<R> + Display, '_> Display for Display<'_, Record<R, C>>
[src]

impl<R, C: Command<R> + Display, '_> Display for Display<'_, History<R, C>>
[src]

Auto Trait Implementations

impl<'a, T> Send for Display<'a, T> where
    T: Sync

impl<'a, T> Sync for Display<'a, T> where
    T: Sync

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]