pub trait TryFromTableAttr: Sized {
    // Required method
    fn try_from_table_attr(
        value: TableAttribute,
    ) -> Result<Self, ReadConversionError>;
}
Expand description

Trait for converting TableAttribute to Self

Required Methods§

source

fn try_from_table_attr( value: TableAttribute, ) -> Result<Self, ReadConversionError>

Try to convert value to Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl TryFromTableAttr for bool

source§

impl TryFromTableAttr for f32

source§

impl TryFromTableAttr for f64

source§

impl TryFromTableAttr for i16

source§

impl TryFromTableAttr for i32

source§

impl TryFromTableAttr for i64

source§

impl TryFromTableAttr for u16

source§

impl TryFromTableAttr for u32

source§

impl TryFromTableAttr for u64

source§

impl TryFromTableAttr for usize

source§

impl TryFromTableAttr for String

source§

impl TryFromTableAttr for Vec<u8>

source§

impl<K, V> TryFromTableAttr for BTreeMap<K, V>
where K: FromStr + Ord, V: TryFromTableAttr,

source§

impl<K, V> TryFromTableAttr for HashMap<K, V>
where K: FromStr + Hash + Eq, V: TryFromTableAttr,

source§

impl<T> TryFromTableAttr for Option<T>

source§

impl<T> TryFromTableAttr for Vec<T>

Implementors§