Trait list_fn::ResultFn[][src]

pub trait ResultFn {
    type Result;
    fn result(self) -> Self::Result;
}

Associated Types

Loading content...

Required methods

fn result(self) -> Self::Result[src]

Loading content...

Implementations on Foreign Types

impl<I: Iterator> ResultFn for &mut I[src]

type Result = ()

fn result(self)[src]

Loading content...

Implementors

impl<T, E> ResultFn for Empty<T, E>[src]

type Result = E

fn result(self) -> E[src]

Loading content...