Enum xmpp_parsers::pubsub::AffiliationAttribute
source · pub enum AffiliationAttribute {
Member,
None,
Outcast,
Owner,
Publisher,
PublishOnly,
}
Expand description
A list of possible affiliations to a node.
Variants§
Member
You are a member of this node, you can subscribe and retrieve items.
None
You don’t have a specific affiliation with this node, you can only subscribe to it.
Outcast
You are banned from this node.
Owner
You are an owner of this node, and can do anything with it.
Publisher
You are a publisher on this node, you can publish and retract items to it.
PublishOnly
You can publish and retract items on this node, but not subscribe or retrieve items.
Trait Implementations§
source§impl Clone for AffiliationAttribute
impl Clone for AffiliationAttribute
source§fn clone(&self) -> AffiliationAttribute
fn clone(&self) -> AffiliationAttribute
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 AffiliationAttribute
impl Debug for AffiliationAttribute
source§impl Display for AffiliationAttribute
impl Display for AffiliationAttribute
source§impl FromStr for AffiliationAttribute
impl FromStr for AffiliationAttribute
source§impl FromXmlText for AffiliationAttribute
impl FromXmlText for AffiliationAttribute
source§impl IntoAttributeValue for AffiliationAttribute
impl IntoAttributeValue for AffiliationAttribute
source§fn into_attribute_value(self) -> Option<String>
fn into_attribute_value(self) -> Option<String>
Turns this into an attribute string, or None if it shouldn’t be added.
source§impl IntoXmlText for AffiliationAttribute
impl IntoXmlText for AffiliationAttribute
source§fn into_xml_text(self) -> String
fn into_xml_text(self) -> String
Consume the value and return it as XML string.
source§impl PartialEq for AffiliationAttribute
impl PartialEq for AffiliationAttribute
source§fn eq(&self, other: &AffiliationAttribute) -> bool
fn eq(&self, other: &AffiliationAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AffiliationAttribute
Auto Trait Implementations§
impl Freeze for AffiliationAttribute
impl RefUnwindSafe for AffiliationAttribute
impl Send for AffiliationAttribute
impl Sync for AffiliationAttribute
impl Unpin for AffiliationAttribute
impl UnwindSafe for AffiliationAttribute
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