Skip to main content

IntoValue

Trait IntoValue 

Source
pub trait IntoValue {
    // Required method
    fn into_value(self) -> Value;
}
Expand description

Trait for converting types into Value.

Required Methods§

Implementations on Foreign Types§

Source§

impl IntoValue for &str

Source§

impl IntoValue for bool

Source§

impl IntoValue for f32

Source§

impl IntoValue for f64

Source§

impl IntoValue for i8

Source§

impl IntoValue for i16

Source§

impl IntoValue for i32

Source§

impl IntoValue for i64

Source§

impl IntoValue for isize

Source§

impl IntoValue for u8

Source§

impl IntoValue for u16

Source§

impl IntoValue for u32

Source§

impl IntoValue for u64

Source§

impl IntoValue for usize

Source§

impl IntoValue for String

Source§

impl<'a> IntoValue for Cow<'a, str>

Source§

impl<T: IntoValue + Clone> IntoValue for &T

Source§

impl<T: IntoValue> IntoValue for Option<T>

Implementors§