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