pub struct DictionaryItem {
pub item_key: Option<String>,
pub item_value: Option<String>,
}Fields§
§item_key: Option<String>Item key, maximum 256 characters.
item_value: Option<String>Item value, maximum 8000 characters.
Implementations§
Source§impl DictionaryItem
impl DictionaryItem
pub fn new() -> DictionaryItem
Trait Implementations§
Source§impl Clone for DictionaryItem
impl Clone for DictionaryItem
Source§fn clone(&self) -> DictionaryItem
fn clone(&self) -> DictionaryItem
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 DictionaryItem
impl Debug for DictionaryItem
Source§impl Default for DictionaryItem
impl Default for DictionaryItem
Source§fn default() -> DictionaryItem
fn default() -> DictionaryItem
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DictionaryItem
impl<'de> Deserialize<'de> for DictionaryItem
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 DictionaryItem
impl PartialEq for DictionaryItem
Source§impl Serialize for DictionaryItem
impl Serialize for DictionaryItem
impl StructuralPartialEq for DictionaryItem
Auto Trait Implementations§
impl Freeze for DictionaryItem
impl RefUnwindSafe for DictionaryItem
impl Send for DictionaryItem
impl Sync for DictionaryItem
impl Unpin for DictionaryItem
impl UnwindSafe for DictionaryItem
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