pub trait Function<Res>:
Sync
+ Send
+ 'static {
// Required method
fn call(&self, kwargs: Kwargs, state: &State<'_>) -> Res;
// Provided method
fn is_safe(&self) -> bool { ... }
}Expand description
The function function type definition