Struct xmpp_parsers::version::VersionResult
source · pub struct VersionResult {
pub name: String,
pub version: String,
pub os: Option<String>,
}
Expand description
Represents the answer about the software version we are using.
It should only be used in an <iq type='result'/>
, as it can only
represent the result, and not a request.
Fields§
§name: String
The name of this client.
version: String
The version of this client.
os: Option<String>
The OS this client is running on.
Trait Implementations§
source§impl Clone for VersionResult
impl Clone for VersionResult
source§fn clone(&self) -> VersionResult
fn clone(&self) -> VersionResult
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 VersionResult
impl Debug for VersionResult
source§impl From<VersionResult> for Element
impl From<VersionResult> for Element
source§fn from(elem: VersionResult) -> Element
fn from(elem: VersionResult) -> Element
Converts to this type from the input type.
source§impl FromXml for VersionResult
impl FromXml for VersionResult
§type Builder = FromEventsViaElement<VersionResult>
type Builder = FromEventsViaElement<VersionResult>
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 VersionResult
impl IntoXml for VersionResult
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
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 VersionResult
impl PartialEq for VersionResult
source§fn eq(&self, other: &VersionResult) -> bool
fn eq(&self, other: &VersionResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for VersionResult
impl TryFrom<Element> for VersionResult
§type Error = FromElementError
type Error = FromElementError
The type returned in the event of a conversion error.
source§fn try_from(elem: Element) -> Result<VersionResult, FromElementError>
fn try_from(elem: Element) -> Result<VersionResult, FromElementError>
Performs the conversion.
impl IqResultPayload for VersionResult
impl StructuralPartialEq for VersionResult
Auto Trait Implementations§
impl Freeze for VersionResult
impl RefUnwindSafe for VersionResult
impl Send for VersionResult
impl Sync for VersionResult
impl Unpin for VersionResult
impl UnwindSafe for VersionResult
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