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(other: DiscoItemsQuery) -> Self
fn from(other: DiscoItemsQuery) -> Self
Converts to this type from the input type.
source§impl FromXml for DiscoItemsQuery
impl FromXml for DiscoItemsQuery
source§impl IntoXml for DiscoItemsQuery
impl IntoXml for DiscoItemsQuery
source§impl TryFrom<Element> for DiscoItemsQuery
impl TryFrom<Element> for DiscoItemsQuery
impl IqGetPayload 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