pub struct BatchPutEntry {
pub key: StructuredKey,
pub value: Vec<u8>,
}Expand description
One batch put entry.
Fields§
§key: StructuredKeyKey to store.
value: Vec<u8>Value bytes.
Trait Implementations§
Source§impl Clone for BatchPutEntry
impl Clone for BatchPutEntry
Source§fn clone(&self) -> BatchPutEntry
fn clone(&self) -> BatchPutEntry
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 moreSource§impl Debug for BatchPutEntry
impl Debug for BatchPutEntry
Source§impl<'de> Deserialize<'de> for BatchPutEntry
impl<'de> Deserialize<'de> for BatchPutEntry
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 Eq for BatchPutEntry
Source§impl PartialEq for BatchPutEntry
impl PartialEq for BatchPutEntry
Source§fn eq(&self, other: &BatchPutEntry) -> bool
fn eq(&self, other: &BatchPutEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BatchPutEntry
impl Serialize for BatchPutEntry
impl StructuralPartialEq for BatchPutEntry
Auto Trait Implementations§
impl Freeze for BatchPutEntry
impl RefUnwindSafe for BatchPutEntry
impl Send for BatchPutEntry
impl Sync for BatchPutEntry
impl Unpin for BatchPutEntry
impl UnsafeUnpin for BatchPutEntry
impl UnwindSafe for BatchPutEntry
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