pub trait IngestFactory<A> {
type Ingest: Ingest<A>;
// Required method
fn build_ingest(&self) -> Self::Ingest;
}Expand description
Describes a type that can produce an Ingest
Required Associated Types§
Required Methods§
Sourcefn build_ingest(&self) -> Self::Ingest
fn build_ingest(&self) -> Self::Ingest
Build the ingest type