Struct xmpp_parsers::disco::DiscoInfoQuery
source · pub struct DiscoInfoQuery {
pub node: Option<String>,
}
Expand description
Structure representing a <query xmlns='http://jabber.org/protocol/disco#info'/>
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.
Trait Implementations§
source§impl Clone for DiscoInfoQuery
impl Clone for DiscoInfoQuery
source§fn clone(&self) -> DiscoInfoQuery
fn clone(&self) -> DiscoInfoQuery
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 DiscoInfoQuery
impl Debug for DiscoInfoQuery
source§impl From<DiscoInfoQuery> for Element
impl From<DiscoInfoQuery> for Element
source§fn from(elem: DiscoInfoQuery) -> Element
fn from(elem: DiscoInfoQuery) -> Element
Converts to this type from the input type.
source§impl PartialEq for DiscoInfoQuery
impl PartialEq for DiscoInfoQuery
source§fn eq(&self, other: &DiscoInfoQuery) -> bool
fn eq(&self, other: &DiscoInfoQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for DiscoInfoQuery
impl TryFrom<Element> for DiscoInfoQuery
impl IqGetPayload for DiscoInfoQuery
impl StructuralPartialEq for DiscoInfoQuery
Auto Trait Implementations§
impl RefUnwindSafe for DiscoInfoQuery
impl Send for DiscoInfoQuery
impl Sync for DiscoInfoQuery
impl Unpin for DiscoInfoQuery
impl UnwindSafe for DiscoInfoQuery
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