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 AsXml for DiscoItemsQuery
impl AsXml for DiscoItemsQuery
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 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
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<DiscoItemsQuery, FromElementError>
fn try_from(elem: Element) -> Result<DiscoItemsQuery, FromElementError>
Performs the conversion.
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)