pub trait CallableFetch<T>: Send + Sync {
// Required method
fn fetch(&self) -> T;
}Expand description
A trait for simple types that can be used as parameters in callable functions.
pub trait CallableFetch<T>: Send + Sync {
// Required method
fn fetch(&self) -> T;
}A trait for simple types that can be used as parameters in callable functions.