[][src]Macro futures_ext::ensure_boxfuture

macro_rules! ensure_boxfuture {
    ($cond:expr, $e:expr) => { ... };
}

Macro that can be used like ensure! macro from failure crate, but in the context where the expected return type is BoxFuture. Exits a function early with an Error if the condition is not satisfied.