caelix-core 0.0.12

Core primitives for the Caelix framework.
Documentation
1
2
3
4
5
use crate::{BoxFuture, RequestContext, Result};

pub trait Guard: Send + Sync + 'static {
    fn can_activate<'a>(&'a self, ctx: &'a RequestContext) -> BoxFuture<'a, Result<bool>>;
}