pub enum CharacterReply {
Exists,
Full,
Full3,
NotApproved,
OK,
Deleted,
Unrecognized(i32),
}
Expand description
Reply code sent with CHARACTER_REPLY packet
Variants§
Exists
Full
Only sent in reply to Character_Create packets. Displays the same message as CharacterReply.Full3 in the official client.
Full3
Only sent in reply to Character_Request packets. Displays the same message as CharacterReply.Full in the official client.
NotApproved
OK
Deleted
Unrecognized(i32)
Trait Implementations§
Source§impl Clone for CharacterReply
impl Clone for CharacterReply
Source§fn clone(&self) -> CharacterReply
fn clone(&self) -> CharacterReply
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 CharacterReply
impl Debug for CharacterReply
Source§impl Default for CharacterReply
impl Default for CharacterReply
Source§impl From<CharacterReply> for i32
impl From<CharacterReply> for i32
Source§fn from(value: CharacterReply) -> i32
fn from(value: CharacterReply) -> i32
Converts to this type from the input type.
Source§impl From<i32> for CharacterReply
impl From<i32> for CharacterReply
Source§impl PartialEq for CharacterReply
impl PartialEq for CharacterReply
impl Copy for CharacterReply
impl Eq for CharacterReply
impl StructuralPartialEq for CharacterReply
Auto Trait Implementations§
impl Freeze for CharacterReply
impl RefUnwindSafe for CharacterReply
impl Send for CharacterReply
impl Sync for CharacterReply
impl Unpin for CharacterReply
impl UnwindSafe for CharacterReply
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