Trait gat_lending_iterator::SingleArgFnOnce

source ·
pub trait SingleArgFnOnce<Arg>: FnOnce(Arg) -> Self::Output {
    type Output;
}
Expand description

Placeholder for FnOnce

Required Associated Types§

source

type Output

The output type of the function.

Implementors§

source§

impl<F, Arg, O> SingleArgFnOnce<Arg> for F
where F: FnOnce(Arg) -> O,