Struct xmpp_parsers::disco::DiscoInfoResult
source · pub struct DiscoInfoResult {
pub node: Option<String>,
pub identities: Vec<Identity>,
pub features: Vec<Feature>,
pub extensions: Vec<DataForm>,
}
Expand description
Structure representing a <query xmlns='http://jabber.org/protocol/disco#info'/>
element.
It should only be used in an <iq type='result'/>
, as it can only
represent the result, and not a request.
Fields§
§node: Option<String>
Node on which we have done this discovery.
identities: Vec<Identity>
List of identities exposed by this entity.
features: Vec<Feature>
List of features supported by this entity.
extensions: Vec<DataForm>
List of extensions reported by this entity.
Trait Implementations§
source§impl Clone for DiscoInfoResult
impl Clone for DiscoInfoResult
source§fn clone(&self) -> DiscoInfoResult
fn clone(&self) -> DiscoInfoResult
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 DiscoInfoResult
impl Debug for DiscoInfoResult
source§impl From<DiscoInfoResult> for Element
impl From<DiscoInfoResult> for Element
source§fn from(disco: DiscoInfoResult) -> Element
fn from(disco: DiscoInfoResult) -> Element
Converts to this type from the input type.
source§impl TryFrom<Element> for DiscoInfoResult
impl TryFrom<Element> for DiscoInfoResult
impl IqResultPayload for DiscoInfoResult
Auto Trait Implementations§
impl Freeze for DiscoInfoResult
impl RefUnwindSafe for DiscoInfoResult
impl Send for DiscoInfoResult
impl Sync for DiscoInfoResult
impl Unpin for DiscoInfoResult
impl UnwindSafe for DiscoInfoResult
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