pub struct NotificationThread {
pub id: usize,
pub pinned: bool,
pub repository: Repository,
pub subject: NotificationSubject,
pub unread: bool,
pub updated_at: DateTime<Utc>,
pub url: String,
}Fields§
§id: usize§pinned: bool§repository: Repository§subject: NotificationSubject§unread: bool§updated_at: DateTime<Utc>§url: StringTrait Implementations§
Source§impl Debug for NotificationThread
impl Debug for NotificationThread
Source§impl<'de> Deserialize<'de> for NotificationThread
impl<'de> Deserialize<'de> for NotificationThread
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
Source§impl Display for NotificationThread
impl Display for NotificationThread
Auto Trait Implementations§
impl Freeze for NotificationThread
impl RefUnwindSafe for NotificationThread
impl Send for NotificationThread
impl Sync for NotificationThread
impl Unpin for NotificationThread
impl UnwindSafe for NotificationThread
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