pub struct ProductsResponse {
pub products: Vec<Product>,
}Fields§
§products: Vec<Product>A list of products
Trait Implementations§
Source§impl Clone for ProductsResponse
impl Clone for ProductsResponse
Source§fn clone(&self) -> ProductsResponse
fn clone(&self) -> ProductsResponse
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 ProductsResponse
impl Debug for ProductsResponse
Source§impl Default for ProductsResponse
impl Default for ProductsResponse
Source§fn default() -> ProductsResponse
fn default() -> ProductsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProductsResponse
impl<'de> Deserialize<'de> for ProductsResponse
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 ProductsResponse
impl RefUnwindSafe for ProductsResponse
impl Send for ProductsResponse
impl Sync for ProductsResponse
impl Unpin for ProductsResponse
impl UnsafeUnpin for ProductsResponse
impl UnwindSafe for ProductsResponse
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