pub struct CatalogResponse {
pub results: Vec<CatalogEntry>,
pub result_set_size: u32,
}Expand description
Response from the catalog API.
Fields§
§results: Vec<CatalogEntry>§result_set_size: u32Trait Implementations§
Source§impl Clone for CatalogResponse
impl Clone for CatalogResponse
Source§fn clone(&self) -> CatalogResponse
fn clone(&self) -> CatalogResponse
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 CatalogResponse
impl Debug for CatalogResponse
Source§impl<'de> Deserialize<'de> for CatalogResponse
impl<'de> Deserialize<'de> for CatalogResponse
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 CatalogResponse
impl RefUnwindSafe for CatalogResponse
impl Send for CatalogResponse
impl Sync for CatalogResponse
impl Unpin for CatalogResponse
impl UnwindSafe for CatalogResponse
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