Enum xmpp_parsers::pubsub::event::PubSubEvent
source · pub enum PubSubEvent {
Configuration {
node: NodeName,
form: Option<DataForm>,
},
Delete {
node: NodeName,
redirect: Option<String>,
},
Items {
node: NodeName,
items: PubSubEventItems,
},
Purge {
node: NodeName,
},
Subscription {
node: NodeName,
expiry: Option<DateTime>,
jid: Option<Jid>,
subid: Option<SubscriptionId>,
subscription: Option<Subscription>,
},
}
Expand description
Represents an event happening to a PubSub node.
Variants§
Configuration
This node’s configuration changed.
Delete
This node has been deleted, with an optional redirect to another node.
Fields
Items
Some items have been published on this node.
Purge
All items of this node just got removed at once.
Subscription
The user’s subscription to this node has changed.
Trait Implementations§
source§impl Clone for PubSubEvent
impl Clone for PubSubEvent
source§fn clone(&self) -> PubSubEvent
fn clone(&self) -> PubSubEvent
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 PubSubEvent
impl Debug for PubSubEvent
source§impl From<PubSubEvent> for Element
impl From<PubSubEvent> for Element
source§fn from(other: PubSubEvent) -> Self
fn from(other: PubSubEvent) -> Self
Converts to this type from the input type.
source§impl FromXml for PubSubEvent
impl FromXml for PubSubEvent
source§impl IntoXml for PubSubEvent
impl IntoXml for PubSubEvent
source§impl PartialEq for PubSubEvent
impl PartialEq for PubSubEvent
source§fn eq(&self, other: &PubSubEvent) -> bool
fn eq(&self, other: &PubSubEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for PubSubEvent
impl TryFrom<Element> for PubSubEvent
impl MessagePayload for PubSubEvent
impl StructuralPartialEq for PubSubEvent
Auto Trait Implementations§
impl Freeze for PubSubEvent
impl RefUnwindSafe for PubSubEvent
impl Send for PubSubEvent
impl Sync for PubSubEvent
impl Unpin for PubSubEvent
impl UnwindSafe for PubSubEvent
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