bitwarden-state 3.0.0

Internal crate for the bitwarden crate. Do not use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

#[cfg(feature = "uniffi")]
uniffi::setup_scaffolding!();

/// This module provides a generic repository interface for storing and retrieving items.
pub mod repository;

/// This module provides a registry for managing repositories of different types.
pub mod registry;

/// Type-safe settings repository for storing application configuration and state.
pub mod settings;

pub(crate) mod sdk_managed;

pub use sdk_managed::DatabaseConfiguration;
pub use settings::{Key, Setting, SettingItem, SettingsError};