Struct undo::record::Display[][src]

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

Configurable display formatting for the record.

Implementations

impl<A, F> Display<'_, A, F>[src]

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

Show colored output (on by default).

Requires the colored feature to be enabled.

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

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

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

Show the saved action (on by default).

Trait Implementations

impl<A: Display, F> Display for Display<'_, A, F>[src]

impl<'a, A, F> From<&'a Record<A, F>> for Display<'a, A, F>[src]

Auto Trait Implementations

impl<'a, A, F> RefUnwindSafe for Display<'a, A, F> where
    A: RefUnwindSafe,
    F: RefUnwindSafe

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

impl<'a, A, F> Sync for Display<'a, A, F> where
    A: Sync,
    F: Sync

impl<'a, A, F> Unpin for Display<'a, A, F>

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

Blanket Implementations

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

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

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

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

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

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.