Trait swiftide_core::indexing_traits::Loader
source · pub trait Loader {
// Required method
fn into_stream(self) -> IndexingStream;
// Provided method
fn into_stream_boxed(self: Box<Self>) -> IndexingStream { ... }
}
Expand description
Starting point of a stream
Required Methods§
fn into_stream(self) -> IndexingStream
Provided Methods§
sourcefn into_stream_boxed(self: Box<Self>) -> IndexingStream
fn into_stream_boxed(self: Box<Self>) -> IndexingStream
Trait Implementations§
source§impl Loader for &dyn Loader
impl Loader for &dyn Loader
fn into_stream(self) -> IndexingStream
source§fn into_stream_boxed(self: Box<Self>) -> IndexingStream
fn into_stream_boxed(self: Box<Self>) -> IndexingStream
Intended for use with Box Read more
source§impl Loader for Box<dyn Loader>
impl Loader for Box<dyn Loader>
fn into_stream(self) -> IndexingStream
source§fn into_stream_boxed(self: Box<Self>) -> IndexingStream
fn into_stream_boxed(self: Box<Self>) -> IndexingStream
Intended for use with Box Read more