pub type AsyncActivation<'f> = Activation<'f, Async>;
Available on crate feature
async
only.Expand description
Activation with async support.
This is a convenience type that can be used to create activations with
async support. It is equivalent to Activation<'f, Async>
.
§Examples
use cel_cxx::*;
let activation = AsyncActivation::new_async();
Aliased Type§
pub struct AsyncActivation<'f> { /* private fields */ }