[][src]Trait agnes::label::IntoLabeled

pub trait IntoLabeled: Sized {
    fn label<Label>(self) -> Labeled<Label, Self>;
}

Trait for labeling an arbitrary value (to construct a Labeled) object).

Required methods

fn label<Label>(self) -> Labeled<Label, Self>

Label this object with label Label.

Loading content...

Implementors

impl<T> IntoLabeled for T[src]

Loading content...