pub struct Items {
pub limit: Option<i64>,
pub next_marker: Option<Option<String>>,
pub prev_marker: Option<Option<String>>,
pub total_count: Option<i64>,
pub offset: Option<i64>,
pub order: Option<Vec<CollectionsOrder>>,
pub entries: Option<Vec<Item>>,
}Fields§
§limit: Option<i64>§next_marker: Option<Option<String>>§prev_marker: Option<Option<String>>§total_count: Option<i64>§offset: Option<i64>§order: Option<Vec<CollectionsOrder>>§entries: Option<Vec<Item>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Items
impl<'de> Deserialize<'de> for Items
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
impl StructuralPartialEq for Items
Auto Trait Implementations§
impl Freeze for Items
impl RefUnwindSafe for Items
impl Send for Items
impl Sync for Items
impl Unpin for Items
impl UnsafeUnpin for Items
impl UnwindSafe for Items
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