[][src]Struct rubbl_core::notify::termcolor::TermcolorNotificationBackend

pub struct TermcolorNotificationBackend { /* fields omitted */ }

A notification backend that writes colorized output to the terminal.

This struct implements the NotificationBackend trait, and emits notifications to standard output and standard error with colorized prefixes.

Implementations

impl TermcolorNotificationBackend[src]

pub fn new(chatter: ChatterLevel) -> TermcolorNotificationBackend[src]

Create a new TermcolorNotificationBackend.

pub fn bare_error<E: Into<Error>>(&mut self, err: E)[src]

Print the information contained in an Error object.

This function prints out the error, the sub-errors that caused it, and its associated backtrace if available, with colorization.

Trait Implementations

impl NotificationBackend for TermcolorNotificationBackend[src]

Auto Trait Implementations

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, 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.