Struct xmpp_parsers::version::VersionQuery
source · pub struct VersionQuery;
Expand description
Represents a query for the software version a remote entity is using.
It should only be used in an <iq type='get'/>
, as it can only
represent the request, and not a result.
Trait Implementations§
source§impl Clone for VersionQuery
impl Clone for VersionQuery
source§fn clone(&self) -> VersionQuery
fn clone(&self) -> VersionQuery
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 VersionQuery
impl Debug for VersionQuery
source§impl From<VersionQuery> for Element
impl From<VersionQuery> for Element
source§fn from(other: VersionQuery) -> Self
fn from(other: VersionQuery) -> Self
Converts to this type from the input type.
source§impl FromXml for VersionQuery
impl FromXml for VersionQuery
§type Builder = VersionQueryFromEvents
type Builder = VersionQueryFromEvents
A builder type used to construct the element. Read more
source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
source§impl IntoXml for VersionQuery
impl IntoXml for VersionQuery
§type EventIter = VersionQueryIntoEvents
type EventIter = VersionQueryIntoEvents
The iterator type. Read more
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 VersionQuery
impl PartialEq for VersionQuery
source§fn eq(&self, other: &VersionQuery) -> bool
fn eq(&self, other: &VersionQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for VersionQuery
impl TryFrom<Element> for VersionQuery
impl IqGetPayload for VersionQuery
impl StructuralPartialEq for VersionQuery
Auto Trait Implementations§
impl Freeze for VersionQuery
impl RefUnwindSafe for VersionQuery
impl Send for VersionQuery
impl Sync for VersionQuery
impl Unpin for VersionQuery
impl UnwindSafe for VersionQuery
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