Trait columnar::common::index::IndexAs

source ·
pub trait IndexAs<T> {
    // Required method
    fn index_as(&self, index: usize) -> T;

    // Provided method
    fn last(&self) -> Option<T>
       where Self: Len { ... }
}

Required Methods§

source

fn index_as(&self, index: usize) -> T

Provided Methods§

source

fn last(&self) -> Option<T>
where Self: Len,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: Index, S> IndexAs<S> for T
where T::Ref: CopyAs<S>,