Struct parsell::impls::Function3 [] [src]

pub struct Function3<F>(_);

Methods

impl<F> Function3<F>
[src]

fn new(f: F) -> Self

Trait Implementations

impl<F: Debug> Debug for Function3<F>
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<F: Clone> Clone for Function3<F>
[src]

fn clone(&self) -> Function3<F>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl<F: Copy> Copy for Function3<F>
[src]

impl<F, S1, S2, S3, T> Function<((S1, S2), S3)> for Function3<F> where F: Fn(S1, S2, S3) -> T
[src]

type Output = T

fn apply(&self, args: ((S1, S2), S3)) -> T