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 AsXmlText for AffiliationAttribute
impl AsXmlText for AffiliationAttribute
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§fn from_xml_text(s: String) -> Result<AffiliationAttribute, Error>
fn from_xml_text(s: String) -> Result<AffiliationAttribute, Error>
Convert the given XML text to a value.
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 PartialEq for AffiliationAttribute
impl PartialEq for AffiliationAttribute
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> AsOptionalXmlText for Twhere
T: AsXmlText,
impl<T> AsOptionalXmlText for Twhere
T: AsXmlText,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> ToCompactString for Twhere
T: Display,
impl<T> ToCompactString for Twhere
T: Display,
source§fn to_compact_string(&self) -> CompactString
fn to_compact_string(&self) -> CompactString
Converts the given value to a
CompactString
. Read more