Trait certain_map::Param

source ·
pub trait Param<T> {
    // Required method
    fn param(&self) -> T;
}
Expand description

We use service_async’s Param*.

Required Methods§

source

fn param(&self) -> T

Implementors§

source§

impl<T> Param<T> for Twhere T: Clone,