pub trait DecisionLoader {
// Required method
fn load<'a>(
&'a self,
key: &'a str,
) -> impl Future<Output = LoaderResponse> + 'a;
}Expand description
Trait used for implementing a loader for decisions
Required Methods§
fn load<'a>(&'a self, key: &'a str) -> impl Future<Output = LoaderResponse> + 'a
Object Safety§
This trait is not object safe.