Struct levana_perpswap_cosmos::prelude::Item
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§
§impl<T> Item<T>
impl<T> Item<T>
§impl<T> Item<T>where
T: Serialize + DeserializeOwned,
impl<T> Item<T>where
T: Serialize + DeserializeOwned,
pub fn as_slice(&self) -> &[u8] ⓘ
pub fn save(&self, store: &mut dyn Storage, data: &T) -> Result<(), StdError>
pub fn save(&self, store: &mut dyn Storage, data: &T) -> Result<(), StdError>
save will serialize the model and store, returns an error on serialization issues
pub fn remove(&self, store: &mut dyn Storage)
pub fn load(&self, store: &dyn Storage) -> Result<T, StdError>
pub fn load(&self, store: &dyn Storage) -> Result<T, StdError>
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) -> Result<Option<T>, StdError>
pub fn may_load(&self, store: &dyn Storage) -> Result<Option<T>, StdError>
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 exists(&self, store: &dyn Storage) -> bool
pub fn exists(&self, store: &dyn Storage) -> bool
Returns true
if data is stored at the key, false
otherwise.
pub fn update<A, E>(&self, store: &mut dyn Storage, action: A) -> Result<T, E>
pub fn update<A, E>(&self, store: &mut dyn Storage, action: A) -> Result<T, E>
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.
pub fn query<Q>(
&self,
querier: &QuerierWrapper<'_, Q>,
remote_contract: Addr,
) -> Result<T, StdError>where
Q: CustomQuery,
pub fn query<Q>(
&self,
querier: &QuerierWrapper<'_, Q>,
remote_contract: Addr,
) -> Result<T, StdError>where
Q: CustomQuery,
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§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
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 moresource§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more