pub struct KvWrite {
pub bucket: Option<String>,
pub key: Option<String>,
pub value: Option<String>,
}Fields§
§bucket: Option<String>Bucket is the bucket, from the path.
key: Option<String>Key is the key, from the path.
value: Option<String>Value is the value, carried verbatim as UTF-8 text (typically JSON).
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KvWrite
impl<'de> Deserialize<'de> for KvWrite
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 KvWrite
Auto Trait Implementations§
impl Freeze for KvWrite
impl RefUnwindSafe for KvWrite
impl Send for KvWrite
impl Sync for KvWrite
impl Unpin for KvWrite
impl UnsafeUnpin for KvWrite
impl UnwindSafe for KvWrite
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