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(_: VersionQuery) -> Element
fn from(_: VersionQuery) -> Element
Converts to this type from the input type.
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 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