pub struct StorageSeeds { /* private fields */ }Implementations§
Source§impl StorageSeeds
impl StorageSeeds
pub fn seed_local(&mut self, key: impl Into<String>, value: impl Into<String>)
pub fn seed_session(&mut self, key: impl Into<String>, value: impl Into<String>)
pub fn local(&self) -> &BTreeMap<String, String>
pub fn session(&self) -> &BTreeMap<String, String>
pub fn reset(&mut self)
Trait Implementations§
Source§impl Clone for StorageSeeds
impl Clone for StorageSeeds
Source§fn clone(&self) -> StorageSeeds
fn clone(&self) -> StorageSeeds
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StorageSeeds
impl Debug for StorageSeeds
Source§impl Default for StorageSeeds
impl Default for StorageSeeds
Source§fn default() -> StorageSeeds
fn default() -> StorageSeeds
Returns the “default value” for a type. Read more
Source§impl PartialEq for StorageSeeds
impl PartialEq for StorageSeeds
impl Eq for StorageSeeds
impl StructuralPartialEq for StorageSeeds
Auto Trait Implementations§
impl Freeze for StorageSeeds
impl RefUnwindSafe for StorageSeeds
impl Send for StorageSeeds
impl Sync for StorageSeeds
impl Unpin for StorageSeeds
impl UnsafeUnpin for StorageSeeds
impl UnwindSafe for StorageSeeds
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