Enum xmpp_parsers::pubsub::event::PubSubEvent
source · pub enum PubSubEvent {
Configuration {
node: NodeName,
form: Option<DataForm>,
},
Delete {
node: NodeName,
redirect: Option<String>,
},
PublishedItems {
node: NodeName,
items: Vec<Item>,
},
RetractedItems {
node: NodeName,
items: Vec<ItemId>,
},
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
PublishedItems
Some items have been published on this node.
RetractedItems
Some items have been removed from 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(event: PubSubEvent) -> Element
fn from(event: PubSubEvent) -> Element
Converts to this type from the input type.
source§impl TryFrom<Element> for PubSubEvent
impl TryFrom<Element> for PubSubEvent
impl MessagePayload 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