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

Required Methods§

Implementations on Foreign Types§

source§

impl FromValue for i32

source§

impl FromValue for u32

source§

impl FromValue for u8

source§

impl FromValue for String

source§

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

source§

impl FromValue for i16

source§

impl FromValue for usize

source§

impl FromValue for f32

source§

impl FromValue for f64

source§

impl FromValue for i8

source§

impl FromValue for isize

source§

impl FromValue for u16

source§

impl FromValue for u64

source§

impl FromValue for bool

source§

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

source§

impl FromValue for i64

Implementors§