[][src]Struct abscissa_core::terminal::status::Status

pub struct Status { /* fields omitted */ }

Status message builder

Methods

impl Status[src]

pub fn new() -> Self[src]

Create a new status message with default settings

pub fn justified(self) -> Self[src]

Justify status on display

pub fn bold(self) -> Self[src]

Make colors bold

pub fn color(self, c: Color) -> Self[src]

Set the colors used to display this message

pub fn status<S>(self, msg: S) -> Self where
    S: ToString
[src]

Set a status message to display

pub fn print_stdout<S>(self, msg: S) -> Result<(), FrameworkError> where
    S: AsRef<str>, 
[src]

Print the given message to stdout

pub fn print_stderr<S>(self, msg: S) -> Result<(), FrameworkError> where
    S: AsRef<str>, 
[src]

Print the given message to stderr

Trait Implementations

impl Clone for Status[src]

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

Performs copy-assignment from source. Read more

impl Default for Status[src]

impl Debug for Status[src]

Auto Trait Implementations

impl Unpin for Status

impl Sync for Status

impl Send for Status

impl RefUnwindSafe for Status

impl UnwindSafe for Status

Blanket Implementations

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

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]