pub struct CollectionList {
pub page: i32,
pub per_page: i32,
pub total_items: i32,
pub items: Vec<Collection>,
}Fields§
§page: i32§per_page: i32§total_items: i32§items: Vec<Collection>Trait Implementations§
Source§impl Debug for CollectionList
impl Debug for CollectionList
Source§impl<'de> Deserialize<'de> for CollectionList
impl<'de> Deserialize<'de> for CollectionList
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 CollectionList
impl RefUnwindSafe for CollectionList
impl Send for CollectionList
impl Sync for CollectionList
impl Unpin for CollectionList
impl UnsafeUnpin for CollectionList
impl UnwindSafe for CollectionList
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