Trait exr::image::recursive::IntoTuple[][src]

pub trait IntoTuple<Tuple> {
    fn into_tuple(self) -> Tuple;
}
Expand description

Convert this recursive type into a tuple. This is nice as it will require less typing for the same type. A type might or might not be convertible to the specified Tuple type.

Required methods

fn into_tuple(self) -> Tuple[src]

Convert this recursive type to a nice tuple.

Implementors