Trait RefOperator

Source
pub trait RefOperator<'a, In> {
    type Output;

    // Required method
    fn next(&mut self, input: ValueRef<'a, In>) -> Self::Output;
}
Expand description

Operator that takes a ValueRef as input.

Required Associated Types§

Source

type Output

The output type.

Required Methods§

Source

fn next(&mut self, input: ValueRef<'a, In>) -> Self::Output

Apply the operator.

Implementors§

Source§

impl<'a, In, P> RefOperator<'a, In> for P
where P: Operator<ValueRef<'a, In>>, In: 'a,

Source§

type Output = <P as Operator<ValueRef<'a, In>>>::Output