pub struct KeySearchResponse {
pub keys: Option<Vec<Key>>,
pub total: Option<i64>,
}
Expand description
KeySearchResponse : Key search response
Fields§
§keys: Option<Vec<Key>>
§total: Option<i64>
Implementations§
Source§impl KeySearchResponse
impl KeySearchResponse
Sourcepub fn new() -> KeySearchResponse
pub fn new() -> KeySearchResponse
Key search response
Trait Implementations§
Source§impl Clone for KeySearchResponse
impl Clone for KeySearchResponse
Source§fn clone(&self) -> KeySearchResponse
fn clone(&self) -> KeySearchResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for KeySearchResponse
impl Debug for KeySearchResponse
Source§impl Default for KeySearchResponse
impl Default for KeySearchResponse
Source§fn default() -> KeySearchResponse
fn default() -> KeySearchResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeySearchResponse
impl<'de> Deserialize<'de> for KeySearchResponse
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 KeySearchResponse
impl PartialEq for KeySearchResponse
Source§impl Serialize for KeySearchResponse
impl Serialize for KeySearchResponse
impl StructuralPartialEq for KeySearchResponse
Auto Trait Implementations§
impl Freeze for KeySearchResponse
impl RefUnwindSafe for KeySearchResponse
impl Send for KeySearchResponse
impl Sync for KeySearchResponse
impl Unpin for KeySearchResponse
impl UnwindSafe for KeySearchResponse
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