Trait rant::IntoRant[][src]

pub trait IntoRant {
    fn into_rant(self) -> Result<RantValue, ValueError>;
}

Enables conversion from a native type to a RantValue.

Required methods

fn into_rant(self) -> Result<RantValue, ValueError>[src]

Convert to a RantValue.

Loading content...

Implementations on Foreign Types

impl IntoRant for u8[src]

impl IntoRant for i8[src]

impl IntoRant for u16[src]

impl IntoRant for i16[src]

impl IntoRant for u32[src]

impl IntoRant for i32[src]

impl IntoRant for u64[src]

impl IntoRant for i64[src]

impl IntoRant for isize[src]

impl IntoRant for usize[src]

impl IntoRant for f32[src]

impl IntoRant for f64[src]

impl IntoRant for String[src]

impl IntoRant for &'static str[src]

impl<T: IntoRant> IntoRant for Vec<T>[src]

impl<T: IntoRant> IntoRant for Option<T>[src]

Loading content...

Implementors

Loading content...