pub struct NotificationUpdateInput {
pub read_at: Option<DateTime<Utc>>,
pub snoozed_until_at: Option<DateTime<Utc>>,
pub project_update_id: Option<String>,
pub initiative_update_id: Option<String>,
}Fields§
§read_at: Option<DateTime<Utc>>The time when notification was marked as read.
snoozed_until_at: Option<DateTime<Utc>>The time until a notification will be snoozed. After that it will appear in the inbox again.
project_update_id: Option<String>The id of the project update related to the notification.
initiative_update_id: Option<String>The id of the project update related to the notification.
Trait Implementations§
Source§impl Clone for NotificationUpdateInput
impl Clone for NotificationUpdateInput
Source§fn clone(&self) -> NotificationUpdateInput
fn clone(&self) -> NotificationUpdateInput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NotificationUpdateInput
impl Debug for NotificationUpdateInput
Source§impl Default for NotificationUpdateInput
impl Default for NotificationUpdateInput
Source§fn default() -> NotificationUpdateInput
fn default() -> NotificationUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NotificationUpdateInput
impl<'de> Deserialize<'de> for NotificationUpdateInput
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 NotificationUpdateInput
impl RefUnwindSafe for NotificationUpdateInput
impl Send for NotificationUpdateInput
impl Sync for NotificationUpdateInput
impl Unpin for NotificationUpdateInput
impl UnwindSafe for NotificationUpdateInput
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