[][src]Trait agnes::view::PartialEqIndex

pub trait PartialEqIndex {
    fn eq_index(&self, other: &Self, idx: usize) -> bool;
}

Trait for computing equality of a single index (record) within a list of data fields.

Required methods

fn eq_index(&self, other: &Self, idx: usize) -> bool

Returns equality of the values within this list of data fields with the index idx.

Loading content...

Implementors

impl PartialEqIndex for Nil[src]

impl<Head, Tail> PartialEqIndex for Cons<Head, Tail> where
    Head: PartialEqIndex,
    Tail: PartialEqIndex
[src]

impl<T> PartialEqIndex for Framed<T> where
    Value<&'a T>: PartialEq,
    Self: DataIndex<DType = T>, 
[src]

Loading content...