[][src]Struct cw_storage_plus::Map

pub struct Map<'a, K, T> { /* fields omitted */ }

Implementations

impl<'a, K, T> Map<'a, K, T>[src]

pub const fn new(namespace: &'a str) -> Self[src]

impl<'a, K, T> Map<'a, K, T> where
    T: Serialize + DeserializeOwned,
    K: PrimaryKey<'a>, 
[src]

pub fn key(&self, k: K) -> Path<T>[src]

pub fn save(&self, store: &mut dyn Storage, k: K, data: &T) -> StdResult<()>[src]

pub fn remove(&self, store: &mut dyn Storage, k: K)[src]

pub fn load(&self, store: &dyn Storage, k: K) -> StdResult<T>[src]

load will return an error if no data is set at the given key, or on parse error

pub fn may_load(&self, store: &dyn Storage, k: K) -> StdResult<Option<T>>[src]

may_load will parse the data stored at the key if present, returns Ok(None) if no data there. returns an error on issues parsing

pub fn update<A, E>(
    &self,
    store: &mut dyn Storage,
    k: K,
    action: A
) -> Result<T, E> where
    A: FnOnce(Option<T>) -> Result<T, E>,
    E: From<StdError>, 
[src]

Loads the data, perform the specified action, and store the result in the database. This is shorthand for some common sequences, which may be useful.

If the data exists, action(Some(value)) is called. Otherwise action(None) is called.

Trait Implementations

impl<'a, K: Clone, T: Clone> Clone for Map<'a, K, T>[src]

impl<'a, K: Debug, T: Debug> Debug for Map<'a, K, T>[src]

Auto Trait Implementations

impl<'a, K, T> RefUnwindSafe for Map<'a, K, T> where
    K: RefUnwindSafe,
    T: RefUnwindSafe
[src]

impl<'a, K, T> Send for Map<'a, K, T> where
    K: Send,
    T: Send
[src]

impl<'a, K, T> Sync for Map<'a, K, T> where
    K: Sync,
    T: Sync
[src]

impl<'a, K, T> Unpin for Map<'a, K, T> where
    K: Unpin,
    T: Unpin
[src]

impl<'a, K, T> UnwindSafe for Map<'a, K, T> where
    K: UnwindSafe,
    T: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.