pub struct Loading { /* private fields */ }
Implementations§
Source§impl Loading
impl Loading
Sourcepub fn success<T: ToString>(&self, text: T)
pub fn success<T: ToString>(&self, text: T)
Save the current line as ‘success’ and continue to load on the next line
Sourcepub fn fail<T: ToString>(&self, text: T)
pub fn fail<T: ToString>(&self, text: T)
Save the current line as ‘fail’ and continue to load on the next line
Sourcepub fn warn<T: ToString>(&self, text: T)
pub fn warn<T: ToString>(&self, text: T)
Save the current line as ‘warn’ and continue to load on the next line
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Loading
impl RefUnwindSafe for Loading
impl Send for Loading
impl Sync for Loading
impl Unpin for Loading
impl UnwindSafe for Loading
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