pub struct Item {
pub id: Option<ItemId>,
pub publisher: Option<Jid>,
pub payload: Option<Element>,
}
Expand description
A requested item from a PubSub node.
Fields§
§id: Option<ItemId>
The identifier for this item, unique per node.
publisher: Option<Jid>
The JID of the entity who published this item.
payload: Option<Element>
The payload of this item, in an arbitrary namespace.
Implementations§
Trait Implementations§
Source§impl FromXml for Item
impl FromXml for Item
Source§type Builder = ItemFromXmlBuilder
type Builder = ItemFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
impl StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnwindSafe for Item
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