Struct xmpp_parsers::disco::DiscoItemsQuery
source · pub struct DiscoItemsQuery {
pub node: Option<String>,
pub rsm: Option<SetQuery>,
}
Expand description
Structure representing a <query xmlns='http://jabber.org/protocol/disco#items'/>
element.
It should only be used in an <iq type='get'/>
, as it can only represent
the request, and not a result.
Fields§
§node: Option<String>
Node on which we are doing the discovery.
rsm: Option<SetQuery>
Optional paging via Result Set Management
Trait Implementations§
source§impl Clone for DiscoItemsQuery
impl Clone for DiscoItemsQuery
source§fn clone(&self) -> DiscoItemsQuery
fn clone(&self) -> DiscoItemsQuery
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 DiscoItemsQuery
impl Debug for DiscoItemsQuery
source§impl From<DiscoItemsQuery> for Element
impl From<DiscoItemsQuery> for Element
source§fn from(elem: DiscoItemsQuery) -> Element
fn from(elem: DiscoItemsQuery) -> Element
Converts to this type from the input type.
source§impl FromXml for DiscoItemsQuery
impl FromXml for DiscoItemsQuery
§type Builder = FromEventsViaElement<DiscoItemsQuery>
type Builder = FromEventsViaElement<DiscoItemsQuery>
A builder type used to construct the element. Read more
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 DiscoItemsQuery
impl IntoXml for DiscoItemsQuery
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type. Read more
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 DiscoItemsQuery
impl PartialEq for DiscoItemsQuery
source§fn eq(&self, other: &DiscoItemsQuery) -> bool
fn eq(&self, other: &DiscoItemsQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for DiscoItemsQuery
impl TryFrom<Element> for DiscoItemsQuery
impl IqGetPayload for DiscoItemsQuery
impl StructuralPartialEq for DiscoItemsQuery
Auto Trait Implementations§
impl Freeze for DiscoItemsQuery
impl RefUnwindSafe for DiscoItemsQuery
impl Send for DiscoItemsQuery
impl Sync for DiscoItemsQuery
impl Unpin for DiscoItemsQuery
impl UnwindSafe for DiscoItemsQuery
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