pub struct InboxResponse {
pub total_unread: i32,
pub channels: Option<Vec<InboxChannel>>,
}Fields§
§total_unread: i32§channels: Option<Vec<InboxChannel>>Trait Implementations§
Source§impl Debug for InboxResponse
impl Debug for InboxResponse
Source§impl<'de> Deserialize<'de> for InboxResponse
impl<'de> Deserialize<'de> for InboxResponse
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 InboxResponse
impl RefUnwindSafe for InboxResponse
impl Send for InboxResponse
impl Sync for InboxResponse
impl Unpin for InboxResponse
impl UnsafeUnpin for InboxResponse
impl UnwindSafe for InboxResponse
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