pub struct PropertiesMap {
pub key: u32,
pub entries: Vec<(String, PropertyValue)>,
}Expand description
A named map of typed properties within user data.
Fields§
§key: u32§entries: Vec<(String, PropertyValue)>Trait Implementations§
Source§impl Clone for PropertiesMap
impl Clone for PropertiesMap
Source§fn clone(&self) -> PropertiesMap
fn clone(&self) -> PropertiesMap
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PropertiesMap
impl Debug for PropertiesMap
Source§impl PartialEq for PropertiesMap
impl PartialEq for PropertiesMap
impl StructuralPartialEq for PropertiesMap
Auto Trait Implementations§
impl Freeze for PropertiesMap
impl RefUnwindSafe for PropertiesMap
impl Send for PropertiesMap
impl Sync for PropertiesMap
impl Unpin for PropertiesMap
impl UnsafeUnpin for PropertiesMap
impl UnwindSafe for PropertiesMap
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more