Skip to main content

IndexedElementSource

Trait IndexedElementSource 

Source
pub trait IndexedElementSource:
    SourceDomain
    + Prepare
    + Explain
    + PlanIdentity
    + PlanInputs
    + Estimated {
    type IndexDomain: IndexDomain;
    type Arity: Arity;

    // Required method
    fn elements<'a>(
        prepared: Self::Prepared<'a>,
    ) -> IndexedElementContainer<'a, Self::IndexDomain, <Self::ValueDomain as ValueDomain>::Value<'a>, Self::Arity>
       where Self: 'a;
}

Required Associated Types§

Required Methods§

Source

fn elements<'a>( prepared: Self::Prepared<'a>, ) -> IndexedElementContainer<'a, Self::IndexDomain, <Self::ValueDomain as ValueDomain>::Value<'a>, Self::Arity>
where Self: 'a,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§