Enum xmpp_parsers::muc::user::Affiliation
source · pub enum Affiliation {
Owner,
Admin,
Member,
Outcast,
None,
}
Expand description
The affiliation of an entity with a room, which isn’t tied to its presence in it.
Variants§
Owner
The user who created the room, or who got appointed by its creator to be their equal.
Admin
A user who has been empowered by an owner to do administrative operations.
Member
A user who is whitelisted to speak in moderated rooms, or to join a member-only room.
Outcast
A user who has been banned from this room.
None
A normal participant.
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 Default for Affiliation
impl Default for Affiliation
source§fn default() -> Affiliation
fn default() -> Affiliation
Returns the “default value” for a type. Read more
source§impl FromStr for Affiliation
impl FromStr for Affiliation
source§impl IntoAttributeValue for Affiliation
impl IntoAttributeValue for Affiliation
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 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 ==
.impl StructuralPartialEq for Affiliation
Auto Trait Implementations§
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