pub struct IdTypeMap(_);
Expand description
Stores values identified by an Id
AND a the std::any::TypeId
of the value.
In other words, it maps (Id, TypeId)
to any value you want.
Values are cloned when read, so keep them small and light.
If you want to store something bigger, wrap them in Arc<Mutex<…>>
.
Values can either be “persisted” (serializable) or “temporary” (cleared when egui is shut down).
You can store state using the key Id::null
. The state will then only be identified by its type.
let a = Id::new("a");
let b = Id::new("b");
let mut map: IdTypeMap = Default::default();
// `a` associated with an f64 and an i32
map.insert_persisted(a, 3.14);
map.insert_temp(a, 42);
// `b` associated with an f64 and a `&'static str`
map.insert_persisted(b, 13.37);
map.insert_temp(b, "Hello World".to_owned());
// we can retrieve all four values:
assert_eq!(map.get_temp::<f64>(a), Some(3.14));
assert_eq!(map.get_temp::<i32>(a), Some(42));
assert_eq!(map.get_temp::<f64>(b), Some(13.37));
assert_eq!(map.get_temp::<String>(b), Some("Hello World".to_owned()));
// we can retrieve them like so also:
assert_eq!(map.get_persisted::<f64>(a), Some(3.14));
assert_eq!(map.get_persisted::<i32>(a), Some(42));
assert_eq!(map.get_persisted::<f64>(b), Some(13.37));
assert_eq!(map.get_temp::<String>(b), Some("Hello World".to_owned()));
Implementations
sourceimpl IdTypeMap
impl IdTypeMap
sourcepub fn insert_temp<T>(&mut self, id: Id, value: T)where
T: 'static + Any + Clone + Send + Sync,
pub fn insert_temp<T>(&mut self, id: Id, value: T)where
T: 'static + Any + Clone + Send + Sync,
Insert a value that will not be persisted.
sourcepub fn insert_persisted<T>(&mut self, id: Id, value: T)where
T: SerializableAny,
pub fn insert_persisted<T>(&mut self, id: Id, value: T)where
T: SerializableAny,
Insert a value that will be persisted next time you start the app.
sourcepub fn get_temp<T>(&mut self, id: Id) -> Option<T>where
T: 'static + Clone,
pub fn get_temp<T>(&mut self, id: Id) -> Option<T>where
T: 'static + Clone,
Read a value without trying to deserialize a persisted value.
The call clones the value (if found), so make sure it is cheap to clone!
sourcepub fn get_persisted<T>(&mut self, id: Id) -> Option<T>where
T: SerializableAny,
pub fn get_persisted<T>(&mut self, id: Id) -> Option<T>where
T: SerializableAny,
Read a value, optionally deserializing it if available.
The call clones the value (if found), so make sure it is cheap to clone!
pub fn get_temp_mut_or<T>(&mut self, id: Id, or_insert: T) -> &mut Twhere
T: 'static + Any + Clone + Send + Sync,
pub fn get_persisted_mut_or<T>(&mut self, id: Id, or_insert: T) -> &mut Twhere
T: SerializableAny,
pub fn get_temp_mut_or_default<T>(&mut self, id: Id) -> &mut Twhere
T: 'static + Any + Clone + Send + Sync + Default,
pub fn get_persisted_mut_or_default<T>(&mut self, id: Id) -> &mut Twhere
T: SerializableAny + Default,
pub fn get_temp_mut_or_insert_with<T>(
&mut self,
id: Id,
insert_with: impl FnOnce() -> T
) -> &mut Twhere
T: 'static + Any + Clone + Send + Sync,
pub fn get_persisted_mut_or_insert_with<T>(
&mut self,
id: Id,
insert_with: impl FnOnce() -> T
) -> &mut Twhere
T: SerializableAny,
sourcepub fn remove_by_type<T>(&mut self)where
T: 'static,
pub fn remove_by_type<T>(&mut self)where
T: 'static,
Note all state of the given type.
pub fn clear(&mut self)
pub fn is_empty(&mut self) -> bool
pub fn len(&mut self) -> usize
sourcepub fn count_serialized(&mut self) -> usize
pub fn count_serialized(&mut self) -> usize
Count how many values are stored but not yet deserialized.