Struct cw_storage_plus::Item

source ·
pub struct Item<T> { /* private fields */ }
Expand description

Item stores one typed item at the given key. This is an analog of Singleton. It functions the same way as Path does but doesn’t use a Vec and thus has a const fn constructor.

Implementations§

source§

impl<T> Item<T>

source

pub const fn new(storage_key: &'static str) -> Self

Creates a new Item with the given storage key. This is a const fn only suitable when you have a static string slice.

source

pub fn new_dyn(storage_key: impl Into<Namespace>) -> Self

Creates a new Item with the given storage key. Use this if you might need to handle a dynamic string. Otherwise, you might prefer Item::new.

source§

impl<T> Item<T>

source

pub fn as_slice(&self) -> &[u8]

source

pub fn save(&self, store: &mut dyn Storage, data: &T) -> StdResult<()>

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

source

pub fn remove(&self, store: &mut dyn Storage)

source

pub fn load(&self, store: &dyn Storage) -> StdResult<T>

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

source

pub fn may_load(&self, store: &dyn Storage) -> StdResult<Option<T>>

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

source

pub fn exists(&self, store: &dyn Storage) -> bool

Returns true if data is stored at the key, false otherwise.

source

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

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.

It assumes, that data was initialized before, and if it doesn’t exist, Err(StdError::NotFound) is returned.

source

pub fn query<Q: CustomQuery>( &self, querier: &QuerierWrapper<'_, Q>, remote_contract: Addr ) -> StdResult<T>

If you import the proper Item from the remote contract, this will let you read the data from a remote contract in a type-safe way using WasmQuery::RawQuery.

Note that we expect an Item to be set, and error if there is no data there

Auto Trait Implementations§

§

impl<T> Freeze for Item<T>

§

impl<T> RefUnwindSafe for Item<T>
where T: RefUnwindSafe,

§

impl<T> Send for Item<T>
where T: Send,

§

impl<T> Sync for Item<T>
where T: Sync,

§

impl<T> Unpin for Item<T>
where T: Unpin,

§

impl<T> UnwindSafe for Item<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<U> As for U

source§

fn as_<T>(self) -> T
where T: CastFrom<U>,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.