pub struct NotificationInteractionRawEvent {
pub timestamp_ms: i64,
pub package_name: String,
pub notification_key: String,
pub action: NotificationAction,
}Fields§
§timestamp_ms: i64§package_name: String§notification_key: String§action: NotificationActionTrait Implementations§
Source§impl Clone for NotificationInteractionRawEvent
impl Clone for NotificationInteractionRawEvent
Source§fn clone(&self) -> NotificationInteractionRawEvent
fn clone(&self) -> NotificationInteractionRawEvent
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<'de> Deserialize<'de> for NotificationInteractionRawEvent
impl<'de> Deserialize<'de> for NotificationInteractionRawEvent
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 PartialEq for NotificationInteractionRawEvent
impl PartialEq for NotificationInteractionRawEvent
Source§fn eq(&self, other: &NotificationInteractionRawEvent) -> bool
fn eq(&self, other: &NotificationInteractionRawEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for NotificationInteractionRawEvent
impl StructuralPartialEq for NotificationInteractionRawEvent
Auto Trait Implementations§
impl Freeze for NotificationInteractionRawEvent
impl RefUnwindSafe for NotificationInteractionRawEvent
impl Send for NotificationInteractionRawEvent
impl Sync for NotificationInteractionRawEvent
impl Unpin for NotificationInteractionRawEvent
impl UnsafeUnpin for NotificationInteractionRawEvent
impl UnwindSafe for NotificationInteractionRawEvent
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