Flatten

Trait Flatten 

Source
pub trait Flatten<R> {
    type Output;

    // Required method
    fn flatten(self, args: R) -> Self::Output;

    // Provided method
    fn _apply(self, args: R) -> Self::Output
       where Self: Sized { ... }
}

Required Associated Types§

Source

type Output

the output type

Required Methods§

Source

fn flatten(self, args: R) -> Self::Output

flattens

Provided Methods§

Source

fn _apply(self, args: R) -> Self::Output
where Self: Sized,

macro convenience version of the primary method

Implementors§