[][src]Macro futures_ext::try_boxfuture

macro_rules! try_boxfuture {
    ($e:expr) => { ... };
}

Macro that can be used like ? operator, but in the context where the expected return type is BoxFuture. The result of it is either Ok part of Result or immediate returning the Err part converted into BoxFuture.