pub struct NoopFeedbackSink;Expand description
No-op sink (always available).
Trait Implementations§
Source§impl FeedbackSink for NoopFeedbackSink
impl FeedbackSink for NoopFeedbackSink
fn report<'life0, 'async_trait>(
&'life0 self,
__arg1: 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 NoopFeedbackSink
impl RefUnwindSafe for NoopFeedbackSink
impl Send for NoopFeedbackSink
impl Sync for NoopFeedbackSink
impl Unpin for NoopFeedbackSink
impl UnsafeUnpin for NoopFeedbackSink
impl UnwindSafe for NoopFeedbackSink
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