[][src]Trait agnes::join::AsFrameLookup

pub trait AsFrameLookup<FrameIndex> {
    type Output;
}

Helper trait for computing the FrameLookupCons to lookup any labels within the implementing type as if they were in a new DataFrame with index FrameIndex.

Associated Types

type Output

The computed FrameLookupCons.

Loading content...

Implementors

impl<FrameIndex> AsFrameLookup<FrameIndex> for Nil[src]

type Output = Nil

impl<FrameIndex, FrameFields, FramedStore> AsFrameLookup<FrameIndex> for DataFrame<FrameFields, FramedStore> where
    FrameFields: AsFrameLookup<FrameIndex>, 
[src]

type Output = <FrameFields as AsFrameLookup<FrameIndex>>::Output

impl<FrameIndex, Label, Value, Tail> AsFrameLookup<FrameIndex> for LVCons<Label, Value, Tail> where
    Tail: AsFrameLookup<FrameIndex>, 
[src]

type Output = LMCons<Label, FrameDetailMarkers<FrameIndex, Label>, <Tail as AsFrameLookup<FrameIndex>>::Output>

Loading content...