ManualIndexed

Trait ManualIndexed 

Source
pub trait ManualIndexed: Indexed {
    // Required methods
    fn indexed(&self) -> bool;
    fn set_indexed_with<T: 'static>(&mut self);

    // Provided method
    fn set_indexed(&mut self)
       where Self: 'static { ... }
}

Required Methods§

Source

fn indexed(&self) -> bool

Source

fn set_indexed_with<T: 'static>(&mut self)

Provided Methods§

Source

fn set_indexed(&mut self)
where Self: 'static,

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§