pub struct Notification {
pub form: Option<DataForm>,
pub payloads: Vec<Element>,
}
Expand description
A notification element containing push notification data
Fields§
§form: Option<DataForm>
The ‘form’ to provide summarized information such as the number of unread messages or number of pending subscription requests.
payloads: Vec<Element>
Child elements for the notification that are not part of the summary data form.
Trait Implementations§
Source§impl AsXml for Notification
impl AsXml for Notification
Source§impl Clone for Notification
impl Clone for Notification
Source§fn clone(&self) -> Notification
fn clone(&self) -> Notification
Returns a copy 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 Notification
impl Debug for Notification
Source§impl From<&Notification> for Element
impl From<&Notification> for Element
Source§fn from(other: &Notification) -> Self
fn from(other: &Notification) -> Self
Converts to this type from the input type.
Source§impl From<Notification> for Element
impl From<Notification> for Element
Source§fn from(other: Notification) -> Self
fn from(other: Notification) -> Self
Converts to this type from the input type.
Source§impl FromXml for Notification
impl FromXml for Notification
Source§impl TryFrom<Element> for Notification
impl TryFrom<Element> for Notification
impl PubSubPayload for Notification
Auto Trait Implementations§
impl Freeze for Notification
impl RefUnwindSafe for Notification
impl Send for Notification
impl Sync for Notification
impl Unpin for Notification
impl UnwindSafe for Notification
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