pub trait FromValue: Sized {
    fn from_value(value: Result<ValueAccessor<'_>>) -> Result<Self>;
}

Required Methods§

source

fn from_value(value: Result<ValueAccessor<'_>>) -> Result<Self>

Implementations on Foreign Types§

source§

impl FromValue for String

source§

impl FromValue for bool

source§

impl FromValue for f32

source§

impl FromValue for f64

source§

impl FromValue for u8

source§

impl FromValue for u16

source§

impl FromValue for u32

source§

impl FromValue for u64

source§

impl FromValue for usize

source§

impl FromValue for i8

source§

impl FromValue for i16

source§

impl FromValue for i32

source§

impl FromValue for i64

source§

impl FromValue for isize

source§

impl<T> FromValue for Option<T>where
    T: FromValue,

source§

impl<T> FromValue for Vec<T>where
    T: FromValue,

Implementors§