pub struct DictionaryObjectValue {
pub elements: Vec<DictionaryEntry>,
pub weak_keys: bool,
}Expand description
The data contained within a Dictionary
Fields§
§elements: Vec<DictionaryEntry>The contents of this Dictionary
weak_keys: boolAre the keys of this Dictionary weakly referenced
Trait Implementations§
Source§impl Clone for DictionaryObjectValue
impl Clone for DictionaryObjectValue
Source§fn clone(&self) -> DictionaryObjectValue
fn clone(&self) -> DictionaryObjectValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DictionaryObjectValue
impl Debug for DictionaryObjectValue
Source§impl PartialEq for DictionaryObjectValue
impl PartialEq for DictionaryObjectValue
impl StructuralPartialEq for DictionaryObjectValue
Auto Trait Implementations§
impl Freeze for DictionaryObjectValue
impl RefUnwindSafe for DictionaryObjectValue
impl Send for DictionaryObjectValue
impl Sync for DictionaryObjectValue
impl Unpin for DictionaryObjectValue
impl UnsafeUnpin for DictionaryObjectValue
impl UnwindSafe for DictionaryObjectValue
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