pub struct DescribeProductsResponse {
pub next_token: Option<String>,
pub products: Vec<Product>,
}Fields§
§next_token: Option<String>The pagination token to use to request the next page of results.
products: Vec<Product>A list of products, including details for each product.
Trait Implementations§
Source§impl Clone for DescribeProductsResponse
impl Clone for DescribeProductsResponse
Source§fn clone(&self) -> DescribeProductsResponse
fn clone(&self) -> DescribeProductsResponse
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 DescribeProductsResponse
impl Debug for DescribeProductsResponse
Source§impl Default for DescribeProductsResponse
impl Default for DescribeProductsResponse
Source§fn default() -> DescribeProductsResponse
fn default() -> DescribeProductsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeProductsResponse
impl<'de> Deserialize<'de> for DescribeProductsResponse
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 DescribeProductsResponse
impl PartialEq for DescribeProductsResponse
impl StructuralPartialEq for DescribeProductsResponse
Auto Trait Implementations§
impl Freeze for DescribeProductsResponse
impl RefUnwindSafe for DescribeProductsResponse
impl Send for DescribeProductsResponse
impl Sync for DescribeProductsResponse
impl Unpin for DescribeProductsResponse
impl UnwindSafe for DescribeProductsResponse
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