pub struct NoopFleetEventSink;Expand description
Event sink that discards all events.
Trait Implementations§
Source§impl Clone for NoopFleetEventSink
impl Clone for NoopFleetEventSink
Source§fn clone(&self) -> NoopFleetEventSink
fn clone(&self) -> NoopFleetEventSink
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NoopFleetEventSink
impl Debug for NoopFleetEventSink
Source§impl Default for NoopFleetEventSink
impl Default for NoopFleetEventSink
Source§fn default() -> NoopFleetEventSink
fn default() -> NoopFleetEventSink
Returns the “default value” for a type. Read more
Source§impl FleetEventSink for NoopFleetEventSink
impl FleetEventSink for NoopFleetEventSink
Source§fn emit<'life0, 'async_trait>(
&'life0 self,
_event: FleetEvent,
) -> Pin<Box<dyn Future<Output = FleetResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn emit<'life0, 'async_trait>(
&'life0 self,
_event: FleetEvent,
) -> Pin<Box<dyn Future<Output = FleetResult<()>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Emits one event.
impl Copy for NoopFleetEventSink
Auto Trait Implementations§
impl Freeze for NoopFleetEventSink
impl RefUnwindSafe for NoopFleetEventSink
impl Send for NoopFleetEventSink
impl Sync for NoopFleetEventSink
impl Unpin for NoopFleetEventSink
impl UnsafeUnpin for NoopFleetEventSink
impl UnwindSafe for NoopFleetEventSink
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