Struct secret_cosmwasm_storage::TypedStorage
source · [−]pub struct TypedStorage<'a, S: Storage, T> where
T: Serialize + DeserializeOwned, { /* private fields */ }
Implementations
sourceimpl<'a, S: Storage, T> TypedStorage<'a, S, T> where
T: Serialize + DeserializeOwned,
impl<'a, S: Storage, T> TypedStorage<'a, S, T> where
T: Serialize + DeserializeOwned,
pub fn new(storage: &'a mut S) -> Self
sourcepub fn save(&mut self, key: &[u8], data: &T) -> StdResult<()>
pub fn save(&mut self, key: &[u8], data: &T) -> StdResult<()>
save will serialize the model and store, returns an error on serialization issues
sourcepub fn load(&self, key: &[u8]) -> StdResult<T>
pub fn load(&self, key: &[u8]) -> StdResult<T>
load will return an error if no data is set at the given key, or on parse error
sourcepub fn may_load(&self, key: &[u8]) -> StdResult<Option<T>>
pub fn may_load(&self, key: &[u8]) -> 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
pub fn range<'b>(
&'b self,
start: Option<&[u8]>,
end: Option<&[u8]>,
order: Order
) -> Box<dyn Iterator<Item = StdResult<KV<T>>> + 'b>
sourcepub fn update<A>(&mut self, key: &[u8], action: A) -> StdResult<T> where
A: FnOnce(Option<T>) -> StdResult<T>,
pub fn update<A>(&mut self, key: &[u8], action: A) -> StdResult<T> where
A: FnOnce(Option<T>) -> StdResult<T>,
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, S, T> RefUnwindSafe for TypedStorage<'a, S, T> where
S: RefUnwindSafe,
T: RefUnwindSafe,
impl<'a, S, T> Send for TypedStorage<'a, S, T> where
S: Send,
T: Sync,
impl<'a, S, T> Sync for TypedStorage<'a, S, T> where
S: Sync,
T: Sync,
impl<'a, S, T> Unpin for TypedStorage<'a, S, T>
impl<'a, S, T> !UnwindSafe for TypedStorage<'a, S, T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more