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 FromXml for DiscoInfoQuery
impl FromXml for DiscoInfoQuery
§type Builder = FromEventsViaElement<DiscoInfoQuery>
type Builder = FromEventsViaElement<DiscoInfoQuery>
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 DiscoInfoQuery
impl IntoXml for DiscoInfoQuery
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
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 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 Freeze for DiscoInfoQuery
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