pub trait Sink: Debug + Send + Sync + 'static { }
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.
Debug + Send + Sync + 'static