[][src]Trait rsfbclient_core::IntoParam

pub trait IntoParam {
    fn into_param(self) -> Param;
}

Implemented for types that can be sent as parameters

Required methods

fn into_param(self) -> Param

Loading content...

Implementations on Foreign Types

impl IntoParam for Vec<u8>[src]

impl IntoParam for String[src]

impl IntoParam for i64[src]

impl IntoParam for bool[src]

impl IntoParam for i32[src]

impl IntoParam for u32[src]

impl IntoParam for i16[src]

impl IntoParam for u16[src]

impl IntoParam for i8[src]

impl IntoParam for u8[src]

impl IntoParam for f64[src]

impl IntoParam for f32[src]

impl<T> IntoParam for Option<T> where
    T: IntoParam
[src]

Implements for all nullable variants

impl<T, B: ?Sized, '_> IntoParam for &'_ B where
    B: ToOwned<Owned = T>,
    T: Borrow<B> + IntoParam
[src]

Implements for all borrowed variants (&str, Cow and etc)

Loading content...

Implementors

Loading content...