pub trait EnumerableArity<S: ElementShape, I: IndexDomain>: PreparedArity<S> {
// Required method
fn elements<'a>(
prepared: Self::Prepared<'a>,
) -> IndexedElementContainer<'a, I, <S::ValueDomain as ValueDomain>::Value<'a>, Self>
where S: 'a;
}Required Methods§
fn elements<'a>(
prepared: Self::Prepared<'a>,
) -> IndexedElementContainer<'a, I, <S::ValueDomain as ValueDomain>::Value<'a>, Self>where
S: 'a,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".