[][src]Struct undo::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).unicode(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 unicode(&mut self, on: bool) -> &mut Self[src]

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

The symbols might only work 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<'_, T> Display<'_, History<T>>[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: Clone> Clone for Display<'a, T>[src]

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

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

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

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

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

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

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

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

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

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

impl<'a, T> StructuralEq for Display<'a, T>[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

impl<'a, T> Unpin for Display<'a, T>

impl<'a, T> UnwindSafe for Display<'a, T> where
    T: RefUnwindSafe

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

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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