pub enum Payload {
Configuration {
node: NodeName,
form: Option<DataForm>,
},
Delete {
node: NodeName,
redirect: Option<String>,
},
Items {
node: NodeName,
published: Vec<Item>,
retracted: 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
Items
Some items have been published or retracted on this node.
Fields
Purge
All items of this node just got removed at once.
Subscription
The user’s subscription to this node has changed.
Implementations§
Trait Implementations§
impl StructuralPartialEq for Payload
Auto Trait Implementations§
impl Freeze for Payload
impl RefUnwindSafe for Payload
impl Send for Payload
impl Sync for Payload
impl Unpin for Payload
impl UnwindSafe for Payload
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