pub enum ReceiveErr {
Io(Error),
XmlError(XmlError),
ConnectionClosed(ConnectionClosedErr),
FailedToBuildRoomMessage(String),
FailedToBuildAdminMessage(String),
}Variants§
Io(Error)
XmlError(XmlError)
ConnectionClosed(ConnectionClosedErr)
FailedToBuildRoomMessage(String)
FailedToBuildAdminMessage(String)
Trait Implementations§
Source§impl Debug for ReceiveErr
impl Debug for ReceiveErr
Source§impl From<Error> for ReceiveErr
impl From<Error> for ReceiveErr
Source§impl From<ReceiveErr> for ComError
impl From<ReceiveErr> for ComError
Source§fn from(value: ReceiveErr) -> Self
fn from(value: ReceiveErr) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReceiveErr
impl !RefUnwindSafe for ReceiveErr
impl Send for ReceiveErr
impl Sync for ReceiveErr
impl Unpin for ReceiveErr
impl !UnwindSafe for ReceiveErr
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