Trait rbatis_core::runtime::stream::IntoStream [−][src]
pub trait IntoStream { type Item; type IntoStream: Stream; fn into_stream(self) -> Self::IntoStream; }
Expand description
Conversion into a Stream
.
By implementing IntoIterator
for a type, you define how it will be
converted to an iterator. This is common for types which describe a
collection of some kind.
See also: FromStream
.
Associated Types
type IntoStream: Stream
type IntoStream: Stream
Which kind of stream are we turning this into?
Required methods
fn into_stream(self) -> Self::IntoStream
fn into_stream(self) -> Self::IntoStream
Creates a stream from a value.