Struct xmpp_parsers::pubsub::owner::Affiliation
source · pub struct Affiliation {
pub jid: Jid,
pub affiliation: AffiliationAttribute,
}
Expand description
An affiliation element.
Fields§
§jid: Jid
The node this affiliation pertains to.
affiliation: AffiliationAttribute
The affiliation you currently have on this node.
Trait Implementations§
source§impl Clone for Affiliation
impl Clone for Affiliation
source§fn clone(&self) -> Affiliation
fn clone(&self) -> Affiliation
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 Affiliation
impl Debug for Affiliation
source§impl From<Affiliation> for Element
impl From<Affiliation> for Element
source§fn from(elem: Affiliation) -> Element
fn from(elem: Affiliation) -> Element
Converts to this type from the input type.
source§impl FromXml for Affiliation
impl FromXml for Affiliation
§type Builder = FromEventsViaElement<Affiliation>
type Builder = FromEventsViaElement<Affiliation>
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 Affiliation
impl IntoXml for Affiliation
§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 Affiliation
impl PartialEq for Affiliation
source§fn eq(&self, other: &Affiliation) -> bool
fn eq(&self, other: &Affiliation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<Element> for Affiliation
impl TryFrom<Element> for Affiliation
impl StructuralPartialEq for Affiliation
Auto Trait Implementations§
impl Freeze for Affiliation
impl RefUnwindSafe for Affiliation
impl Send for Affiliation
impl Sync for Affiliation
impl Unpin for Affiliation
impl UnwindSafe for Affiliation
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