[]Struct wasm_pack::PBAR

pub struct PBAR { /* fields omitted */ }

The global progress bar and user-facing message output.

Methods from Deref<Target = ProgressOutput>

pub fn step(&self, step: &Step, message: &str)
[src]

Inform the user that the given step is being executed, with details in message.

pub fn message(&self, message: &str)
[src]

Print the given message.

pub fn info(&self, message: &str)
[src]

Add an informational message.

pub fn warn(&self, message: &str)
[src]

Add a warning message.

pub fn error(&self, message: String)
[src]

Add an error message.

pub fn done(&self)
[src]

After having built up a series of messages, print all of them out.

Trait Implementations

impl Deref for PBAR

type Target = ProgressOutput

The resulting type after dereferencing.

impl LazyStatic for PBAR

Auto Trait Implementations

impl Send for PBAR

impl Sync for PBAR

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[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]

impl<T> Erased for T