pub struct IndexeddbStateStoreBuilder { /* private fields */ }
Expand description
Builder for IndexeddbStateStore
.
Implementations§
source§impl IndexeddbStateStoreBuilder
impl IndexeddbStateStoreBuilder
sourcepub fn name(self, value: String) -> Self
pub fn name(self, value: String) -> Self
Set the name for the indexeddb store to use, state
is none given.
sourcepub fn passphrase(self, value: String) -> Self
pub fn passphrase(self, value: String) -> Self
Set the password the indexeddb should be encrypted with.
If not given, the DB is not encrypted.
sourcepub fn migration_conflict_strategy(
self,
value: MigrationConflictStrategy
) -> Self
pub fn migration_conflict_strategy( self, value: MigrationConflictStrategy ) -> Self
The strategy to use when a merge conflict is found.
See MigrationConflictStrategy
for details.
pub async fn build( self ) -> Result<IndexeddbStateStore, IndexeddbStateStoreError>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for IndexeddbStateStoreBuilder
impl Send for IndexeddbStateStoreBuilder
impl Sync for IndexeddbStateStoreBuilder
impl Unpin for IndexeddbStateStoreBuilder
impl UnwindSafe for IndexeddbStateStoreBuilder
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