Struct xmpp_parsers::disco::DiscoItemsResult
source · pub struct DiscoItemsResult {
pub node: Option<String>,
pub items: Vec<Item>,
pub rsm: Option<SetResult>,
}
Expand description
Structure representing a <query xmlns='http://jabber.org/protocol/disco#items'/>
element.
It should only be used in an <iq type='result'/>
, as it can only
represent the result, and not a request.
Fields§
§node: Option<String>
Node on which we have done this discovery.
items: Vec<Item>
List of items pointed by this entity.
rsm: Option<SetResult>
Optional paging via Result Set Management
Trait Implementations§
source§impl Clone for DiscoItemsResult
impl Clone for DiscoItemsResult
source§fn clone(&self) -> DiscoItemsResult
fn clone(&self) -> DiscoItemsResult
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 DiscoItemsResult
impl Debug for DiscoItemsResult
source§impl From<DiscoItemsResult> for Element
impl From<DiscoItemsResult> for Element
source§fn from(elem: DiscoItemsResult) -> Element
fn from(elem: DiscoItemsResult) -> Element
Converts to this type from the input type.
source§impl FromXml for DiscoItemsResult
impl FromXml for DiscoItemsResult
§type Builder = FromEventsViaElement<DiscoItemsResult>
type Builder = FromEventsViaElement<DiscoItemsResult>
A builder type used to construct the element.
source§fn from_events(
qname: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( qname: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for DiscoItemsResult
impl IntoXml for DiscoItemsResult
§type EventIter = IntoEventsViaElement<DiscoItemsResult>
type EventIter = IntoEventsViaElement<DiscoItemsResult>
The iterator type.
source§fn into_event_iter(self) -> Result<Self::EventIter, Error>
fn into_event_iter(self) -> Result<Self::EventIter, Error>
Return an iterator which emits the contents of the struct or enum as
serialisable
rxml::Event
items.source§impl PartialEq for DiscoItemsResult
impl PartialEq for DiscoItemsResult
source§fn eq(&self, other: &DiscoItemsResult) -> bool
fn eq(&self, other: &DiscoItemsResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for DiscoItemsResult
impl TryFrom<Element> for DiscoItemsResult
impl IqResultPayload for DiscoItemsResult
impl StructuralPartialEq for DiscoItemsResult
Auto Trait Implementations§
impl Freeze for DiscoItemsResult
impl RefUnwindSafe for DiscoItemsResult
impl Send for DiscoItemsResult
impl Sync for DiscoItemsResult
impl Unpin for DiscoItemsResult
impl UnwindSafe for DiscoItemsResult
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