[][src]Struct cosmwasm_storage::Singleton

pub struct Singleton<'a, T> where
    T: Serialize + DeserializeOwned
{ /* fields omitted */ }

Singleton effectively combines PrefixedStorage with TypedStorage to work on a single storage key. It performs the to_length_prefixed transformation on the given name to ensure no collisions, and then provides the standard TypedStorage accessors, without requiring a key (which is defined in the constructor)

Implementations

impl<'a, T> Singleton<'a, T> where
    T: Serialize + DeserializeOwned
[src]

pub fn new(storage: &'a mut dyn Storage, key: &[u8]) -> Self[src]

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

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

pub fn remove(&mut self)[src]

pub fn load(&self) -> 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) -> 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>(&mut self, action: A) -> Result<T, E> where
    A: FnOnce(T) -> Result<T, E>,
    E: From<StdError>, 
[src]

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

This is the least stable of the APIs, and definitely needs some usage

Auto Trait Implementations

impl<'a, T> !RefUnwindSafe for Singleton<'a, T>

impl<'a, T> !Send for Singleton<'a, T>

impl<'a, T> !Sync for Singleton<'a, T>

impl<'a, T> Unpin for Singleton<'a, T> where
    T: Unpin

impl<'a, T> !UnwindSafe for Singleton<'a, T>

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, 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.