IngestFactory

Trait IngestFactory 

Source
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§

Source

type Ingest: Ingest<A>

The Ingest type

Required Methods§

Source

fn build_ingest(&self) -> Self::Ingest

Build the ingest type

Implementors§