pub struct KeyVecInsertQuery {
pub key: String,
pub value: (i32, Vec<u8>),
pub overwrite: bool,
}Expand description
Insert a Tuple into Sorted Vec. using sorted key
Fields§
§key: String§value: (i32, Vec<u8>)§overwrite: boolTrait Implementations§
Source§impl Debug for KeyVecInsertQuery
impl Debug for KeyVecInsertQuery
Source§impl<'de> Deserialize<'de> for KeyVecInsertQuery
impl<'de> Deserialize<'de> for KeyVecInsertQuery
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 KeyVecInsertQuery
impl PartialEq for KeyVecInsertQuery
Source§impl Serialize for KeyVecInsertQuery
impl Serialize for KeyVecInsertQuery
impl StructuralPartialEq for KeyVecInsertQuery
Auto Trait Implementations§
impl Freeze for KeyVecInsertQuery
impl RefUnwindSafe for KeyVecInsertQuery
impl Send for KeyVecInsertQuery
impl Sync for KeyVecInsertQuery
impl Unpin for KeyVecInsertQuery
impl UnwindSafe for KeyVecInsertQuery
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