pub enum StorageScope {
Cookies,
Local,
Session,
IndexedDb,
}Expand description
Storage scope for Engine::storage.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for StorageScope
impl Clone for StorageScope
Source§fn clone(&self) -> StorageScope
fn clone(&self) -> StorageScope
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StorageScope
impl Debug for StorageScope
Source§impl PartialEq for StorageScope
impl PartialEq for StorageScope
Source§fn eq(&self, other: &StorageScope) -> bool
fn eq(&self, other: &StorageScope) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for StorageScope
impl Eq for StorageScope
impl StructuralPartialEq for StorageScope
Auto Trait Implementations§
impl Freeze for StorageScope
impl RefUnwindSafe for StorageScope
impl Send for StorageScope
impl Sync for StorageScope
impl Unpin for StorageScope
impl UnsafeUnpin for StorageScope
impl UnwindSafe for StorageScope
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