modasync_pool_sink;pubuseasync_pool_sink::*;/// Overflow policy for [asynchronous sinks].
////// When the channel is full, an incoming operation is handled according to the
/// specified policy.
////// [asynchronous sinks]: crate::sink::AsyncPoolSink
#[derive(Copy, Clone, Eq, PartialEq, Hash, Debug)]#[non_exhaustive]pubenumOverflowPolicy{/// Blocks until the channel is not full.
Block,/// Drops the incoming operation.
DropIncoming,// DropOldest, // waiting for https://github.com/crossbeam-rs/crossbeam/issues/400
}