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