pub struct InboxList {
pub count: u64,
pub inboxes: Vec<Inbox>,
pub next_page_token: Option<String>,
}Expand description
One page of inboxes from Client::list_inboxes_page.
Fields§
§count: u64Total inboxes in the account (not just this page).
inboxes: Vec<Inbox>This page of inboxes.
next_page_token: Option<String>Cursor for the next page; None on the last page.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for InboxList
impl<'de> Deserialize<'de> for InboxList
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 InboxList
impl RefUnwindSafe for InboxList
impl Send for InboxList
impl Sync for InboxList
impl Unpin for InboxList
impl UnsafeUnpin for InboxList
impl UnwindSafe for InboxList
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