[][src]Enum xmpp_parsers::pubsub::pubsub::PubSub

pub enum PubSub {
    Create {
        create: Create,
        configure: Option<Configure>,
    },
    Publish {
        publish: Publish,
        publish_options: Option<PublishOptions>,
    },
    Affiliations(Affiliations),
    Default(Default),
    Items(Items),
    Retract(Retract),
    Subscription(SubscriptionElem),
    Subscriptions(Subscriptions),
    Unsubscribe(Unsubscribe),
}

Main payload used to communicate with a PubSub service.

<pubsub xmlns="http://jabber.org/protocol/pubsub"/>

Variants

Create

Request to create a new node, with optional suggested name and suggested configuration.

Fields of Create

create: Create

The create request.

configure: Option<Configure>

The configure request for the new node.

Publish

Request to publish items to a node, with optional options.

Fields of Publish

publish: Publish

The publish request.

publish_options: Option<PublishOptions>

The options related to this publish request.

Affiliations(Affiliations)

A list of affiliations you have on a service, or on a node.

Default(Default)

Request for a default node configuration.

Items(Items)

A request for a list of items.

Retract(Retract)

A request to retract some items from a node.

Subscription(SubscriptionElem)

A request about a subscription.

Subscriptions(Subscriptions)

A request for current subscriptions.

Unsubscribe(Unsubscribe)

An unsubscribe request.

Trait Implementations

impl IqGetPayload for PubSub[src]

impl IqSetPayload for PubSub[src]

impl IqResultPayload for PubSub[src]

impl From<PubSub> for Element[src]

impl Clone for PubSub[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PubSub[src]

impl TryFrom<Element> for PubSub[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl Unpin for PubSub

impl !Sync for PubSub

impl !Send for PubSub

impl !RefUnwindSafe for PubSub

impl !UnwindSafe for PubSub

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> IntoElements for T where
    T: Into<Element>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self