pub struct LoggingEventHandler {
pub verbose: bool,
}Expand description
Logging event handler (logs to stderr)
Fields§
§verbose: boolImplementations§
Trait Implementations§
Source§impl EventHandler for LoggingEventHandler
impl EventHandler for LoggingEventHandler
Source§fn handle_event<'life0, 'async_trait>(
&'life0 self,
event: ExecutionEvent,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn handle_event<'life0, 'async_trait>(
&'life0 self,
event: ExecutionEvent,
) -> Pin<Box<dyn Future<Output = ()> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Handle an execution event
Auto Trait Implementations§
impl Freeze for LoggingEventHandler
impl RefUnwindSafe for LoggingEventHandler
impl Send for LoggingEventHandler
impl Sync for LoggingEventHandler
impl Unpin for LoggingEventHandler
impl UnwindSafe for LoggingEventHandler
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