[][src]Trait rusoto_core::param::ToParam

pub trait ToParam {
    fn to_param(&self) -> String;
}

Trait for implementing type to paramater conversion

Required methods

fn to_param(&self) -> String

Renders this paramater to a String

Loading content...

Implementations on Foreign Types

impl ToParam for u8[src]

impl ToParam for bool[src]

impl ToParam for f32[src]

impl ToParam for f64[src]

impl ToParam for i64[src]

impl<'a, T: ?Sized> ToParam for &'a T where
    T: ToParam
[src]

fn to_param(&self) -> String[src]

Converts a generic type to a paramater

impl ToParam for str[src]

fn to_param(&self) -> String[src]

Converts a str to a paramter

impl ToParam for String[src]

fn to_param(&self) -> String[src]

Converts a String to a paramater

Loading content...

Implementors

Loading content...