Skip to main content

ToExecParams

Trait ToExecParams 

Source
pub trait ToExecParams {
    // Required method
    fn into_params(self) -> Result<(String, ExecutionOptions)>;
}
Expand description

Trait for converting inputs into execution parameters

Required Methods§

Implementations on Foreign Types§

Source§

impl ToExecParams for String

Source§

impl<'a> ToExecParams for &'a str

Source§

impl<'a, V> ToExecParams for (&'a str, V)
where V: Into<Value>,

Implementors§