pub struct Status<'a> { /* private fields */ }Expand description
Indication of starting or finishing of a significant process in the application.
The status part categorizes the process, and should always be a single verb, for example:
Compiling, Running.
In text mode, status messages are coloured and right-padded for better aesthetics.
Padding is hardcoded to 12 characters, therefore avoid using words longer than
11 characters.
The message part is a free-form text describing the details of what’s going on.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Status<'a>
impl<'a> RefUnwindSafe for Status<'a>
impl<'a> Send for Status<'a>
impl<'a> Sync for Status<'a>
impl<'a> Unpin for Status<'a>
impl<'a> UnwindSafe for Status<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more