pub struct InboxPage {
pub messages: Vec<Message>,
pub unread: u32,
}Expand description
A page of a caller’s inbox.
Fields§
§messages: Vec<Message>§unread: u32Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for InboxPage
impl<'de> Deserialize<'de> for InboxPage
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 Eq for InboxPage
impl StructuralPartialEq for InboxPage
Auto Trait Implementations§
impl Freeze for InboxPage
impl RefUnwindSafe for InboxPage
impl Send for InboxPage
impl Sync for InboxPage
impl Unpin for InboxPage
impl UnsafeUnpin for InboxPage
impl UnwindSafe for InboxPage
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