Trait ProvideStreamType

Source
pub trait ProvideStreamType<Runtime>
where Runtime: Async,
{ type Stream<Item: Async>: Async; }

Required Associated Types§

Source

type Stream<Item: Async>: Async

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.

Implementors§

Source§

impl<Component, Runtime> ProvideStreamType<Runtime> for Component
where Runtime: Async, Component: DelegateComponent<StreamTypeComponent>, Component::Delegate: ProvideStreamType<Runtime>,

Source§

type Stream<Item: Async> = <<Component as DelegateComponent<StreamTypeComponent>>::Delegate as ProvideStreamType<Runtime>>::Stream<Item>