ToStore

Trait ToStore 

Source
pub trait ToStore {
    // Required method
    fn to_store(&self) -> Store;
}

Required Methods§

Source

fn to_store(&self) -> Store

Implementations on Foreign Types§

Source§

impl ToStore for &str

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for Value

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for bool

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for f32

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for f64

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for i32

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for i64

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for i128

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for u32

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for u64

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for u128

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for BTreeMap<String, Store>

Source§

fn to_store(&self) -> Store

Source§

impl ToStore for String

Source§

fn to_store(&self) -> Store

Source§

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

Source§

fn to_store(&self) -> Store

Source§

impl<T> ToStore for &T
where T: ToStore,

Source§

fn to_store(&self) -> Store

Source§

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

Source§

fn to_store(&self) -> Store

Implementors§