Struct xmpp_parsers::pubsub::pubsub::Affiliations
source · pub struct Affiliations {
pub node: Option<NodeName>,
pub affiliations: Vec<Affiliation>,
}
Expand description
A list of affiliations you have on a service, or on a node.
Fields§
§node: Option<NodeName>
The optional node name this request pertains to.
affiliations: Vec<Affiliation>
The actual list of affiliation elements.
Trait Implementations§
source§impl Clone for Affiliations
impl Clone for Affiliations
source§fn clone(&self) -> Affiliations
fn clone(&self) -> Affiliations
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 Affiliations
impl Debug for Affiliations
source§impl From<Affiliations> for Element
impl From<Affiliations> for Element
source§fn from(elem: Affiliations) -> Element
fn from(elem: Affiliations) -> Element
Converts to this type from the input type.
source§impl PartialEq for Affiliations
impl PartialEq for Affiliations
source§fn eq(&self, other: &Affiliations) -> bool
fn eq(&self, other: &Affiliations) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for Affiliations
impl TryFrom<Element> for Affiliations
impl StructuralPartialEq for Affiliations
Auto Trait Implementations§
impl Freeze for Affiliations
impl RefUnwindSafe for Affiliations
impl Send for Affiliations
impl Sync for Affiliations
impl Unpin for Affiliations
impl UnwindSafe for Affiliations
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