pub struct SearchCatalogItemsResponse {
pub errors: Option<Vec<Error>>,
pub items: Option<Vec<CatalogObject>>,
pub cursor: Option<String>,
pub matched_variation_ids: Option<Vec<String>>,
}
Expand description
This is a model struct for SearchCatalogItemsResponse type
Fields§
§errors: Option<Vec<Error>>
Any errors that occurred during the request.
items: Option<Vec<CatalogObject>>
Returned items matching the specified query expressions.
cursor: Option<String>
Pagination token used in the next request to return more of the search result.
matched_variation_ids: Option<Vec<String>>
Ids of returned item variations matching the specified query expression.
Trait Implementations§
Source§impl Clone for SearchCatalogItemsResponse
impl Clone for SearchCatalogItemsResponse
Source§fn clone(&self) -> SearchCatalogItemsResponse
fn clone(&self) -> SearchCatalogItemsResponse
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 SearchCatalogItemsResponse
impl Debug for SearchCatalogItemsResponse
Source§impl Default for SearchCatalogItemsResponse
impl Default for SearchCatalogItemsResponse
Source§fn default() -> SearchCatalogItemsResponse
fn default() -> SearchCatalogItemsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchCatalogItemsResponse
impl<'de> Deserialize<'de> for SearchCatalogItemsResponse
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
impl Eq for SearchCatalogItemsResponse
impl StructuralPartialEq for SearchCatalogItemsResponse
Auto Trait Implementations§
impl Freeze for SearchCatalogItemsResponse
impl RefUnwindSafe for SearchCatalogItemsResponse
impl Send for SearchCatalogItemsResponse
impl Sync for SearchCatalogItemsResponse
impl Unpin for SearchCatalogItemsResponse
impl UnwindSafe for SearchCatalogItemsResponse
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.