pub struct ConsoleFeedbackSink { /* private fields */ }Expand description
Console sink for debugging.
Implementations§
Trait Implementations§
Source§impl Default for ConsoleFeedbackSink
impl Default for ConsoleFeedbackSink
Source§impl FeedbackSink for ConsoleFeedbackSink
impl FeedbackSink for ConsoleFeedbackSink
fn report<'life0, 'async_trait>(
&'life0 self,
event: FeedbackEvent,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn report_batch<'life0, 'async_trait>(
&'life0 self,
events: Vec<FeedbackEvent>,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn close<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for ConsoleFeedbackSink
impl RefUnwindSafe for ConsoleFeedbackSink
impl Send for ConsoleFeedbackSink
impl Sync for ConsoleFeedbackSink
impl Unpin for ConsoleFeedbackSink
impl UnwindSafe for ConsoleFeedbackSink
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