pub trait Selector1<A> { type Output; // Required method fn select(&mut self, arg1: A) -> Self::Output; }
A selector accepting a single parameter.
The type of the computed value.
Computes the value based on argument arg1.