pub struct ListCatalogResponse {
pub errors: Option<Vec<Error>>,
pub cursor: Option<String>,
pub objects: Option<Vec<CatalogObject>>,
}
Expand description
This is a model struct for ListCatalogResponse type
Fields§
§errors: Option<Vec<Error>>
Information about errors encountered during the request.
cursor: Option<String>
The pagination cursor to be used in a subsequent request. If unset, this is the final response.
See Pagination for more information.
objects: Option<Vec<CatalogObject>>
The CatalogObjects returned.
Trait Implementations§
Source§impl Clone for ListCatalogResponse
impl Clone for ListCatalogResponse
Source§fn clone(&self) -> ListCatalogResponse
fn clone(&self) -> ListCatalogResponse
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 ListCatalogResponse
impl Debug for ListCatalogResponse
Source§impl<'de> Deserialize<'de> for ListCatalogResponse
impl<'de> Deserialize<'de> for ListCatalogResponse
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 ListCatalogResponse
impl PartialEq for ListCatalogResponse
impl Eq for ListCatalogResponse
impl StructuralPartialEq for ListCatalogResponse
Auto Trait Implementations§
impl Freeze for ListCatalogResponse
impl RefUnwindSafe for ListCatalogResponse
impl Send for ListCatalogResponse
impl Sync for ListCatalogResponse
impl Unpin for ListCatalogResponse
impl UnwindSafe for ListCatalogResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.