Trait memselect::Selector1[][src]

pub trait Selector1<A> {
    type Output;
    fn select(&mut self, arg1: A) -> Self::Output;
}

A selector accepting a single parameter.

Associated Types

The type of the computed value.

Required Methods

Computes the value based on argument arg1.

Implementors