Enum Error

Source
pub enum Error {
    NotJoined,
    PermissionDenied,
    NoSuchGroup,
    RelayDenied,
    Gc3Service,
    CoreProfileOnly,
    ProtocolMismatch,
}
Expand description

Application-defined error conditions in Group Chat 3.

Variants§

§

NotJoined

The requester is not joined and may thus not perform the requested operation.

§

PermissionDenied

The requester does not have sufficient permissions to perform the requested operation, but the lack of permissions is not because the requester is not joined.

§

NoSuchGroup

The group at which the request was directed does not exist.

§

RelayDenied

Relaying of an IQ or a message to a specific participant was denied.

§

Gc3Service

A XEP-0045-based operation was rejected because it is not available on GC3 Groups.

This must only be returned on requests as defined in the GC3 spec and must be clearly distinguished from Self::CoreProfileOnly. The latter is used when a service does not implement the compatibility profile, while Self::Gc3Service is used for operations which are not even part of the compatibility profile.

§

CoreProfileOnly

The GC3 service does not offer the XEP-0045 compatibility profile.

§

ProtocolMismatch

The requester attempted to use a XEP-0045 feature on a GC3 session, or a GC3 feature on a XEP-0045 session.

Trait Implementations§

Source§

impl AsXml for Error

Source§

type ItemIter<'xso_proc_as_xml_iter_lifetime> = ErrorAsXmlIterator<'xso_proc_as_xml_iter_lifetime>

The iterator type. Read more
Source§

fn as_xml_iter(&self) -> Result<Self::ItemIter<'_>, Error>

Return an iterator which emits the contents of the struct or enum as serialisable Item items.
Source§

impl From<&Error> for Element

Source§

fn from(other: &Error) -> Self

Converts to this type from the input type.
Source§

impl From<Error> for Element

Source§

fn from(other: Error) -> Self

Converts to this type from the input type.
Source§

impl FromXml for Error

Source§

type Builder = ErrorFromXmlBuilder

A builder type used to construct the element. Read more
Source§

fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>

Attempt to initiate the streamed construction of this struct from XML. Read more
Source§

impl TryFrom<Element> for Error

Source§

type Error = FromElementError

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

fn try_from(other: Element) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl Freeze for Error

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

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

Source§

type Output = T

Should always be Self
Source§

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

Source§

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>,

Source§

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.