pub trait FnPinBoxFutureSend<T>:
Fn() -> PinBoxFutureSend<T>
+ Send
+ Sync { }Expand description
A trait for thread-safe, reference-counted closures that produce a PinBoxFutureSend.
Implementors§
impl<T, O> FnPinBoxFutureSend<O> for T
Blanket implementation of FnPinBoxFutureSend for any type that satisfies the bounds.