Enum xmpp_parsers::pubsub::event::PubSubEventItem
source · pub enum PubSubEventItem {
Published(Item),
Retracted {
id: ItemId,
},
}
Expand description
Parses either an <item/>
or a <retract/>
.
You should never need to construct this in user code, it is only used as
an intermediate structure while parsing a PubSubEventItems
.
Variants§
Trait Implementations§
source§impl Clone for PubSubEventItem
impl Clone for PubSubEventItem
source§fn clone(&self) -> PubSubEventItem
fn clone(&self) -> PubSubEventItem
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 PubSubEventItem
impl Debug for PubSubEventItem
source§impl From<PubSubEventItem> for Element
impl From<PubSubEventItem> for Element
source§fn from(other: PubSubEventItem) -> Self
fn from(other: PubSubEventItem) -> Self
Converts to this type from the input type.
source§impl FromXml for PubSubEventItem
impl FromXml for PubSubEventItem
source§impl IntoXml for PubSubEventItem
impl IntoXml for PubSubEventItem
source§impl PartialEq for PubSubEventItem
impl PartialEq for PubSubEventItem
source§fn eq(&self, other: &PubSubEventItem) -> bool
fn eq(&self, other: &PubSubEventItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryExtend<PubSubEventItem> for PubSubEventItems
impl TryExtend<PubSubEventItem> for PubSubEventItems
source§fn try_extend<T: IntoIterator<Item = PubSubEventItem>>(
&mut self,
iter: T,
) -> Result<(), Error>
fn try_extend<T: IntoIterator<Item = PubSubEventItem>>( &mut self, iter: T, ) -> Result<(), Error>
Attempt extending the container with the given iterator. Read more
source§impl TryFrom<Element> for PubSubEventItem
impl TryFrom<Element> for PubSubEventItem
impl StructuralPartialEq for PubSubEventItem
Auto Trait Implementations§
impl Freeze for PubSubEventItem
impl RefUnwindSafe for PubSubEventItem
impl Send for PubSubEventItem
impl Sync for PubSubEventItem
impl Unpin for PubSubEventItem
impl UnwindSafe for PubSubEventItem
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