pub struct KeyValueElementData {
pub key: String,
pub value: String,
pub metadata: ElementMetadata,
}Expand description
Data specific to key-value pair elements.
Fields§
§key: String§value: String§metadata: ElementMetadataTrait Implementations§
Source§impl Clone for KeyValueElementData
impl Clone for KeyValueElementData
Source§fn clone(&self) -> KeyValueElementData
fn clone(&self) -> KeyValueElementData
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 moreAuto Trait Implementations§
impl Freeze for KeyValueElementData
impl RefUnwindSafe for KeyValueElementData
impl Send for KeyValueElementData
impl Sync for KeyValueElementData
impl Unpin for KeyValueElementData
impl UnsafeUnpin for KeyValueElementData
impl UnwindSafe for KeyValueElementData
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