Struct xmpp_parsers::extdisco::ServicesQuery
source · pub struct ServicesQuery {
pub type_: Option<Type>,
}
Expand description
Structure representing a <services xmlns='urn:xmpp:extdisco:2'/>
element.
Fields§
§type_: Option<Type>
TODO
Trait Implementations§
source§impl Clone for ServicesQuery
impl Clone for ServicesQuery
source§fn clone(&self) -> ServicesQuery
fn clone(&self) -> ServicesQuery
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 ServicesQuery
impl Debug for ServicesQuery
source§impl From<ServicesQuery> for Element
impl From<ServicesQuery> for Element
source§fn from(elem: ServicesQuery) -> Element
fn from(elem: ServicesQuery) -> Element
Converts to this type from the input type.
source§impl FromXml for ServicesQuery
impl FromXml for ServicesQuery
§type Builder = FromEventsViaElement<ServicesQuery>
type Builder = FromEventsViaElement<ServicesQuery>
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 ServicesQuery
impl IntoXml for ServicesQuery
§type EventIter = IntoEventsViaElement
type EventIter = IntoEventsViaElement
The iterator type.
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 ServicesQuery
impl PartialEq for ServicesQuery
source§fn eq(&self, other: &ServicesQuery) -> bool
fn eq(&self, other: &ServicesQuery) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for ServicesQuery
impl TryFrom<Element> for ServicesQuery
impl IqGetPayload for ServicesQuery
impl StructuralPartialEq for ServicesQuery
Auto Trait Implementations§
impl Freeze for ServicesQuery
impl RefUnwindSafe for ServicesQuery
impl Send for ServicesQuery
impl Sync for ServicesQuery
impl Unpin for ServicesQuery
impl UnwindSafe for ServicesQuery
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