tokio_stream

Trait FromStream

Source
pub trait FromStream<T>: FromStreamPriv<T> { }
Expand description

Convert from a Stream.

This trait is not intended to be used directly. Instead, call StreamExt::collect().

§Implementing

Currently, this trait may not be implemented by third parties. The trait is sealed in order to make changes in the future. Stabilization is pending enhancements to the Rust language.

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.

Implementations on Foreign Types§

Source§

impl FromStream<()> for ()

Source§

impl<T> FromStream<T> for Box<[T]>

Source§

impl<T> FromStream<T> for Vec<T>

Source§

impl<T, U, E> FromStream<Result<T, E>> for Result<U, E>
where U: FromStream<T>,

Source§

impl<T: AsRef<str>> FromStream<T> for String

Implementors§