[][src]Trait agnes::partial::FuncDefault

pub trait FuncDefault {
    type Output;
    fn call(&mut self) -> Self::Output;
}

Default function implementation with no valid implementation exists.

Associated Types

type Output

Output of this function.

Loading content...

Required methods

fn call(&mut self) -> Self::Output

Method called when no Func implementation exists.

Loading content...

Implementors

impl FuncDefault for AddCellToRowFn[src]

type Output = ()

impl FuncDefault for MaxFn[src]

type Output = ()

impl FuncDefault for MeanFn[src]

type Output = ()

impl FuncDefault for MinFn[src]

type Output = ()

impl FuncDefault for StDevFn[src]

type Output = ()

impl FuncDefault for SumFn[src]

type Output = ()

Loading content...