// devela::data::store::key::static_map::entry
////!//#[doc=crate::_tags!(data_structure)]/// Represents an entry in a [static map] allowing for in-place mutation or insertion.
#[doc=crate::_doc_location!("data/id")]////// [static map]: crate::define_static_map
#[derive(Debug)]pubenumStaticMapEntry<'a, V> {/// An entry that contains a value.
////// Provides a mutable reference to the stored value, allowing in-place modification.
Occupied(&'amut V),/// An entry that is vacant and can be used for insertion.
////// Stores the index where a new value should be inserted.
Vacant(usize),}