Sink

Trait Sink 

Source
pub trait Sink:
    Debug
    + Send
    + Sync
    + 'static { }
Expand description

A trait for types that can act as sinks for collected stream data.

This is automatically implemented for any type that is Debug + Send + Sync + 'static.

Implementors§

Source§

impl<T> Sink for T
where T: Debug + Send + Sync + 'static,