Enum xmpp_parsers::pubsub::owner::PubSubOwner
source · pub enum PubSubOwner {
Affiliations(Affiliations),
Configure(Configure),
Default(Default),
Delete(Delete),
Purge(Purge),
Subscriptions(Subscriptions),
}
Expand description
Main payload used to communicate with a PubSubOwner service.
<pubsub xmlns="http://jabber.org/protocol/pubsub#owner"/>
Variants§
Affiliations(Affiliations)
Manage the affiliations of a node.
Configure(Configure)
Request to configure a node, with optional suggested name and suggested configuration.
Default(Default)
Request the default node configuration.
Delete(Delete)
Delete a node.
Purge(Purge)
Purge all items from node.
Subscriptions(Subscriptions)
Request subscriptions of a node.
Trait Implementations§
source§impl Clone for PubSubOwner
impl Clone for PubSubOwner
source§fn clone(&self) -> PubSubOwner
fn clone(&self) -> PubSubOwner
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 PubSubOwner
impl Debug for PubSubOwner
source§impl From<PubSubOwner> for Element
impl From<PubSubOwner> for Element
source§fn from(pubsub: PubSubOwner) -> Element
fn from(pubsub: PubSubOwner) -> Element
Converts to this type from the input type.
source§impl PartialEq for PubSubOwner
impl PartialEq for PubSubOwner
source§fn eq(&self, other: &PubSubOwner) -> bool
fn eq(&self, other: &PubSubOwner) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for PubSubOwner
impl TryFrom<Element> for PubSubOwner
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<PubSubOwner, FromElementError>
fn try_from(elem: Element) -> Result<PubSubOwner, FromElementError>
Performs the conversion.
impl IqGetPayload for PubSubOwner
impl IqResultPayload for PubSubOwner
impl IqSetPayload for PubSubOwner
impl StructuralPartialEq for PubSubOwner
Auto Trait Implementations§
impl Freeze for PubSubOwner
impl RefUnwindSafe for PubSubOwner
impl Send for PubSubOwner
impl Sync for PubSubOwner
impl Unpin for PubSubOwner
impl UnwindSafe for PubSubOwner
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