Trait list_fn::ResultFn[][src]

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

Associated Types

Required methods

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

Implementations on Foreign Types

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

type Result = ()

fn result(self)[src]

impl<T> ResultFn for Option<T>[src]

type Result = ()

fn result(self)[src]

impl ResultFn for ()[src]

type Result = ()

fn result(self)[src]

Implementors

impl<T> ResultFn for Id<T>[src]

type Result = T

fn result(self) -> T[src]