pub struct KeywordsResponse {
pub keywords: Vec<KeywordCount>,
pub total: i64,
pub size: i64,
pub min_count: i64,
}Expand description
Envelope returned by /api/keywords.
Fields§
§keywords: Vec<KeywordCount>§total: i64§size: i64§min_count: i64Trait Implementations§
Source§impl Clone for KeywordsResponse
impl Clone for KeywordsResponse
Source§fn clone(&self) -> KeywordsResponse
fn clone(&self) -> KeywordsResponse
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 KeywordsResponse
impl Debug for KeywordsResponse
Source§impl<'de> Deserialize<'de> for KeywordsResponse
impl<'de> Deserialize<'de> for KeywordsResponse
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
Auto Trait Implementations§
impl Freeze for KeywordsResponse
impl RefUnwindSafe for KeywordsResponse
impl Send for KeywordsResponse
impl Sync for KeywordsResponse
impl Unpin for KeywordsResponse
impl UnsafeUnpin for KeywordsResponse
impl UnwindSafe for KeywordsResponse
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