pub struct CategoryResponse {
pub categories: Vec<Category>,
}
Expand description
The response returned when a request for categories is successful.
Fields§
§categories: Vec<Category>
The categories returned.
Trait Implementations§
Source§impl Debug for CategoryResponse
impl Debug for CategoryResponse
Source§impl<'de> Deserialize<'de> for CategoryResponse
impl<'de> Deserialize<'de> for CategoryResponse
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 CategoryResponse
impl RefUnwindSafe for CategoryResponse
impl Send for CategoryResponse
impl Sync for CategoryResponse
impl Unpin for CategoryResponse
impl UnwindSafe for CategoryResponse
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