#[repr(u8)]pub enum JoinErrorCode {
Unknown = 0,
VersionUnknown = 1,
AuthFailed = 2,
AppError = 127,
}Expand description
Error codes for JoinError (0x02).
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for JoinErrorCode
impl Clone for JoinErrorCode
Source§fn clone(&self) -> JoinErrorCode
fn clone(&self) -> JoinErrorCode
Returns a duplicate 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 JoinErrorCode
impl Debug for JoinErrorCode
Source§impl PartialEq for JoinErrorCode
impl PartialEq for JoinErrorCode
impl Copy for JoinErrorCode
impl Eq for JoinErrorCode
impl StructuralPartialEq for JoinErrorCode
Auto Trait Implementations§
impl Freeze for JoinErrorCode
impl RefUnwindSafe for JoinErrorCode
impl Send for JoinErrorCode
impl Sync for JoinErrorCode
impl Unpin for JoinErrorCode
impl UnwindSafe for JoinErrorCode
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