pub struct SetQueryResponse {
pub values: Vec<String>,
}
Expand description
Response type for set query operations
Fields§
§values: Vec<String>
Trait Implementations§
Source§impl Clone for SetQueryResponse
impl Clone for SetQueryResponse
Source§fn clone(&self) -> SetQueryResponse
fn clone(&self) -> SetQueryResponse
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 SetQueryResponse
impl Debug for SetQueryResponse
Source§impl Default for SetQueryResponse
impl Default for SetQueryResponse
Source§fn default() -> SetQueryResponse
fn default() -> SetQueryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetQueryResponse
impl<'de> Deserialize<'de> for SetQueryResponse
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 SetQueryResponse
impl PartialEq for SetQueryResponse
Source§impl Serialize for SetQueryResponse
impl Serialize for SetQueryResponse
impl StructuralPartialEq for SetQueryResponse
Auto Trait Implementations§
impl Freeze for SetQueryResponse
impl RefUnwindSafe for SetQueryResponse
impl Send for SetQueryResponse
impl Sync for SetQueryResponse
impl Unpin for SetQueryResponse
impl UnwindSafe for SetQueryResponse
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