pub enum PushNotification {
StateChange(Changes),
CalendarAlert(CalendarAlert),
}Variants§
StateChange(Changes)
CalendarAlert(CalendarAlert)
Trait Implementations§
Source§impl Clone for PushNotification
impl Clone for PushNotification
Source§fn clone(&self) -> PushNotification
fn clone(&self) -> PushNotification
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 PushNotification
impl Debug for PushNotification
Source§impl PartialEq for PushNotification
impl PartialEq for PushNotification
impl Eq for PushNotification
impl StructuralPartialEq for PushNotification
Auto Trait Implementations§
impl Freeze for PushNotification
impl RefUnwindSafe for PushNotification
impl Send for PushNotification
impl Sync for PushNotification
impl Unpin for PushNotification
impl UnwindSafe for PushNotification
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