Skip to main content

ToParam

Trait ToParam 

Source
pub trait ToParam {
    // Required method
    fn to_param(&self) -> Value;
}

Required Methods§

Source

fn to_param(&self) -> Value

Implementations on Foreign Types§

Source§

impl ToParam for f32

Source§

fn to_param(&self) -> Value

Source§

impl ToParam for f64

Source§

fn to_param(&self) -> Value

Source§

impl ToParam for i32

Source§

fn to_param(&self) -> Value

Source§

impl ToParam for i64

Source§

fn to_param(&self) -> Value

Source§

impl ToParam for str

Source§

fn to_param(&self) -> Value

Source§

impl ToParam for String

Source§

fn to_param(&self) -> Value

Source§

impl ToParam for Vec<u8>

Source§

fn to_param(&self) -> Value

Source§

impl ToParam for [u8]

Source§

fn to_param(&self) -> Value

Source§

impl<T> ToParam for &T
where T: ToParam + ?Sized,

Source§

fn to_param(&self) -> Value

Implementors§