IntoParameter

Trait IntoParameter 

Source
pub trait IntoParameter<P, Store> {
    // Required method
    fn into_parameter(self) -> Parameter<P, Store>;
}

Required Methods§

Source

fn into_parameter(self) -> Parameter<P, Store>

Implementors§

Source§

impl<P, Store> IntoParameter<P, Store> for Parameter<P, Store>

Source§

impl<P, Store> IntoParameter<P, Store> for P
where P: Clone + 'static,