pub enum Durability {
Temporary,
Persistent,
}
Expand description
Representation of the ledger entry durability to be used with Server::get_contract_data
Variants§
Temporary
Temporary storage, cannot be restored
Persistent
Persistent storage, archived when the TTL is expired, can be restored
Trait Implementations§
Source§impl Debug for Durability
impl Debug for Durability
Source§impl PartialEq for Durability
impl PartialEq for Durability
impl Eq for Durability
impl StructuralPartialEq for Durability
Auto Trait Implementations§
impl Freeze for Durability
impl RefUnwindSafe for Durability
impl Send for Durability
impl Sync for Durability
impl Unpin for Durability
impl UnwindSafe for Durability
Blanket Implementations§
Source§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
Mutably borrows from an owned value. Read more
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.