pub struct ArkKv {
pub key: Option<String>,
pub value: Option<String>,
pub obj: Option<Vec<ArkObj>>,
}Expand description
Ark key-value pair.
Fields§
§key: Option<String>Key
value: Option<String>Value
obj: Option<Vec<ArkObj>>Object data
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ArkKv
impl<'de> Deserialize<'de> for ArkKv
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
impl StructuralPartialEq for ArkKv
Auto Trait Implementations§
impl Freeze for ArkKv
impl RefUnwindSafe for ArkKv
impl Send for ArkKv
impl Sync for ArkKv
impl Unpin for ArkKv
impl UnsafeUnpin for ArkKv
impl UnwindSafe for ArkKv
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