Skip to main content

Access

Trait Access 

Source
pub trait Access {
    // Required method
    fn access(&self, index: usize) -> Option<bool>;
}

Required Methods§

Source

fn access(&self, index: usize) -> Option<bool>

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl Access for BitVec

Source§

impl Access for RRRBitVec

Source§

impl<T, R, S> Access for RankSelectStructure<T, R, S>
where T: Access, S: SelectSupport<T>, R: RankSupport<T>,

Source§

impl<T, R> Access for RankStructure<T, R>
where T: Access, R: RankSupport<T>,

Source§

impl<T, S> Access for SelectStructure<T, S>
where T: Access, S: SelectSupport<T>,