[][src]Struct cw_storage_plus::Path

pub struct Path<T> where
    T: Serialize + DeserializeOwned
{ /* fields omitted */ }

Implementations

impl<T> Path<T> where
    T: Serialize + DeserializeOwned
[src]

pub fn new(namespace: &[u8], keys: &[&[u8]]) -> Self[src]

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

save will serialize the model and store, returns an error on serialization issues

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

pub fn load<S: Storage>(&self, store: &S) -> 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) -> 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, 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<T: Clone> Clone for Path<T> where
    T: Serialize + DeserializeOwned
[src]

impl<T: Debug> Debug for Path<T> where
    T: Serialize + DeserializeOwned
[src]

impl<T> Deref for Path<T> where
    T: Serialize + DeserializeOwned
[src]

type Target = [u8]

The resulting type after dereferencing.

Auto Trait Implementations

impl<T> RefUnwindSafe for Path<T> where
    T: RefUnwindSafe

impl<T> Send for Path<T> where
    T: Send

impl<T> Sync for Path<T> where
    T: Sync

impl<T> Unpin for Path<T> where
    T: Unpin

impl<T> UnwindSafe for Path<T> where
    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.