Trait Index

Source
pub trait Index<In> {
    type Query<'t, Out>
       where Self: 't,
             Out: 't;
}
Expand description

Trait of indexes. You probably only need this if you’re implementing a new index.

Required Associated Types§

Source

type Query<'t, Out> where Self: 't, Out: 't

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§