pub trait ReadonlyState: Send + Sync {
// Required methods
fn get(&self, key: &str) -> Option<Value>;
fn all(&self) -> HashMap<String, Value>;
}Expand description
Core traits and types.
Always available regardless of feature flags. Includes:
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".