[][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 [u8]) -> 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<S: Storage>(&self, store: &mut S, k: K, data: &T) -> StdResult<()>[src]

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

pub fn load<S: Storage>(&self, store: &S, 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<S: Storage>(&self, store: &S, 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, S>(&self, store: &mut S, k: K, action: A) -> Result<T, E> where
    A: FnOnce(Option<T>) -> Result<T, E>,
    E: From<StdError>,
    S: Storage
[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

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

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

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

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

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.