pub struct RealConsoleHandler;Expand description
Real console handler using actual tracing
Implementations§
Trait Implementations§
Source§impl Clone for RealConsoleHandler
impl Clone for RealConsoleHandler
Source§fn clone(&self) -> RealConsoleHandler
fn clone(&self) -> RealConsoleHandler
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ConsoleEffects for RealConsoleHandler
impl ConsoleEffects for RealConsoleHandler
Source§fn log_info<'life0, 'life1, 'async_trait>(
&'life0 self,
message: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<(), AuraError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn log_info<'life0, 'life1, 'async_trait>(
&'life0 self,
message: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<(), AuraError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Log an info message
Source§fn log_warn<'life0, 'life1, 'async_trait>(
&'life0 self,
message: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<(), AuraError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn log_warn<'life0, 'life1, 'async_trait>(
&'life0 self,
message: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<(), AuraError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Log a warning message
Source§impl Debug for RealConsoleHandler
impl Debug for RealConsoleHandler
Auto Trait Implementations§
impl Freeze for RealConsoleHandler
impl RefUnwindSafe for RealConsoleHandler
impl Send for RealConsoleHandler
impl Sync for RealConsoleHandler
impl Unpin for RealConsoleHandler
impl UnsafeUnpin for RealConsoleHandler
impl UnwindSafe for RealConsoleHandler
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