Type Definition glitch_in_the_matrix::MatrixFuture [] [src]

type MatrixFuture<T> = Box<Future<Item = T, Error = MatrixError>>;

A Future with a MatrixError error type. Returned by most library functions.

Yes, I know this is a Box, and that sucks a whoole bunch. I'm waiting for impl Trait to arrive to save us from this madness.