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

A util trait for converting a raw type into a Value

Required Methods§

Implementations on Foreign Types§

source§

impl RawIntoValue for bool

source§

impl RawIntoValue for f32

source§

impl RawIntoValue for f64

source§

impl RawIntoValue for i8

source§

impl RawIntoValue for i16

source§

impl RawIntoValue for i32

source§

impl RawIntoValue for i64

source§

impl RawIntoValue for i128

source§

impl RawIntoValue for isize

source§

impl RawIntoValue for u8

source§

impl RawIntoValue for u16

source§

impl RawIntoValue for u32

source§

impl RawIntoValue for u64

source§

impl RawIntoValue for u128

source§

impl RawIntoValue for usize

source§

impl RawIntoValue for String

Implementors§