pub struct GetAllProductsResponse {
pub products: Vec<Product>,
pub total: u32,
pub skip: u32,
pub limit: u32,
}Fields§
§products: Vec<Product>§total: u32§skip: u32§limit: u32Trait Implementations§
Source§impl Debug for GetAllProductsResponse
impl Debug for GetAllProductsResponse
Source§impl<'de> Deserialize<'de> for GetAllProductsResponse
impl<'de> Deserialize<'de> for GetAllProductsResponse
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 GetAllProductsResponse
impl RefUnwindSafe for GetAllProductsResponse
impl Send for GetAllProductsResponse
impl Sync for GetAllProductsResponse
impl Unpin for GetAllProductsResponse
impl UnwindSafe for GetAllProductsResponse
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