CallableFetch

Trait CallableFetch 

Source
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.

Required Methods§

Source

fn fetch(&self) -> T

Implementors§