pub struct StringValueEntry {
pub key: String,
pub value: String,
}Expand description
A generic key-value pair for more complex structures like DucBlock attribute values.
Fields§
§key: String§value: StringTrait Implementations§
Source§impl Clone for StringValueEntry
impl Clone for StringValueEntry
Source§fn clone(&self) -> StringValueEntry
fn clone(&self) -> StringValueEntry
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 StringValueEntry
impl Debug for StringValueEntry
Source§impl<'de> Deserialize<'de> for StringValueEntry
impl<'de> Deserialize<'de> for StringValueEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StringValueEntry
impl PartialEq for StringValueEntry
Source§impl Serialize for StringValueEntry
impl Serialize for StringValueEntry
impl StructuralPartialEq for StringValueEntry
Auto Trait Implementations§
impl Freeze for StringValueEntry
impl RefUnwindSafe for StringValueEntry
impl Send for StringValueEntry
impl Sync for StringValueEntry
impl Unpin for StringValueEntry
impl UnsafeUnpin for StringValueEntry
impl UnwindSafe for StringValueEntry
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