pub trait StreamIntoAutoUpdatedHandle:
Stream
+ Unpin
+ Sized
+ 'static{
// Provided method
fn into_auto_updated_handle<'async_trait>(
self,
) -> Pin<Box<dyn Future<Output = Result<Arc<ArcSwap<Self::Item>>>> + Send + 'async_trait>>
where Self: Send + 'async_trait { ... }
}Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.