Trait Storable
yew_state
pub trait Storable: Serialize + for<'a> Deserialize<'a> { fn area() -> Area; fn key() -> &'static str { ... } }
Allows state to be stored persistently in local or session storage.
fn area() -> Area
The area to store state.
fn key() -> &'static str
The key used to save and load state from storage.