[][src]Trait agnes::view::FindFrameDetails

pub trait FindFrameDetails<Label>: LookupMarkedElemByLabel<Label> {
    type FrameDetails: FrameDetails;
}

A trait for finding the associated frame details (implementing FrameDetails -- frame index and label within that frame) for for specific label within this type.

Associated Types

type FrameDetails: FrameDetails

The associated frame details for this type.

Loading content...

Implementors

impl<Labels, Label> FindFrameDetails<Label> for Labels where
    Labels: LookupMarkedElemByLabel<Label>,
    MarkerOfElemOf<Labels, Label>: FrameDetails
[src]

type FrameDetails = MarkerOfElemOf<Labels, Label>

Loading content...