Enum xmpp_parsers::muc::user::Status

source ·
pub enum Status {
Show 19 variants NonAnonymousRoom, AffiliationChange, ConfigShowsUnavailableMembers, ConfigHidesUnavailableMembers, ConfigNonPrivacyRelated, SelfPresence, ConfigRoomLoggingEnabled, ConfigRoomLoggingDisabled, ConfigRoomNonAnonymous, ConfigRoomSemiAnonymous, RoomHasBeenCreated, AssignedNick, Banned, NewNick, Kicked, RemovalFromRoom, ConfigMembersOnly, ServiceShutdown, ServiceErrorKick,
}
Expand description

Lists all of the possible status codes used in MUC presences.

Variants§

§

NonAnonymousRoom

100: Inform user that any occupant is allowed to see the user’s full JID

§

AffiliationChange

101: Inform user that his or her affiliation changed while not in the room

§

ConfigShowsUnavailableMembers

102: Inform occupants that room now shows unavailable members

§

ConfigHidesUnavailableMembers

103: Inform occupants that room now does not show unavailable members

§

ConfigNonPrivacyRelated

104: Inform occupants that a non-privacy-related room configuration change has occurred

§

SelfPresence

110: Inform user that presence refers to itself

§

ConfigRoomLoggingEnabled

170: Inform occupants that room logging is now enabled

§

ConfigRoomLoggingDisabled

171: Inform occupants that room logging is now disabled

§

ConfigRoomNonAnonymous

172: Inform occupants that the room is now non-anonymous

§

ConfigRoomSemiAnonymous

173: Inform occupants that the room is now semi-anonymous

§

RoomHasBeenCreated

201: Inform user that a new room has been created

§

AssignedNick

210: Inform user that service has assigned or modified occupant’s roomnick

§

Banned

301: Inform user that they have been banned from the room

§

NewNick

303: Inform all occupants of new room nickname

§

Kicked

307: Inform user that they have been kicked from the room

§

RemovalFromRoom

321: Inform user that they are being removed from the room because of an affiliation change

§

ConfigMembersOnly

322: Inform user that they are being removed from the room because the room has been changed to members-only and the user is not a member

§

ServiceShutdown

332: Inform user that they are being removed from the room because the MUC service is being shut down

§

ServiceErrorKick

333: Inform user that they are being removed from the room for technical reasons

Trait Implementations§

source§

impl Clone for Status

source§

fn clone(&self) -> Status

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Status

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<Status> for Element

source§

fn from(elem: Status) -> Element

Converts to this type from the input type.
source§

impl PartialEq for Status

source§

fn eq(&self, other: &Status) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<Element> for Status

§

type Error = FromElementError

The type returned in the event of a conversion error.
source§

fn try_from(elem: Element) -> Result<Status, FromElementError>

Performs the conversion.
source§

impl StructuralPartialEq for Status

Auto Trait Implementations§

§

impl Freeze for Status

§

impl RefUnwindSafe for Status

§

impl Send for Status

§

impl Sync for Status

§

impl Unpin for Status

§

impl UnwindSafe for Status

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.