Enum xmpp_parsers::pubsub::event::PubSubEventItems
source · pub enum PubSubEventItems {
Published(Vec<Item>),
Retracted(Vec<ItemId>),
}
Expand description
Either a list of published items or a list of retracted items.
Variants§
Published(Vec<Item>)
The items published in an event.
Retracted(Vec<ItemId>)
The item IDs retracted in an event.
Trait Implementations§
source§impl Clone for PubSubEventItems
impl Clone for PubSubEventItems
source§fn clone(&self) -> PubSubEventItems
fn clone(&self) -> PubSubEventItems
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 PubSubEventItems
impl Debug for PubSubEventItems
source§impl Default for PubSubEventItems
impl Default for PubSubEventItems
source§impl IntoIterator for PubSubEventItems
impl IntoIterator for PubSubEventItems
source§impl PartialEq for PubSubEventItems
impl PartialEq for PubSubEventItems
source§fn eq(&self, other: &PubSubEventItems) -> bool
fn eq(&self, other: &PubSubEventItems) -> 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
impl StructuralPartialEq for PubSubEventItems
Auto Trait Implementations§
impl Freeze for PubSubEventItems
impl RefUnwindSafe for PubSubEventItems
impl Send for PubSubEventItems
impl Sync for PubSubEventItems
impl Unpin for PubSubEventItems
impl UnwindSafe for PubSubEventItems
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