pub enum GuildReply {
Show 25 variants
Busy,
NotApproved,
AlreadyMember,
NoCandidates,
Exists,
CreateBegin,
CreateAddConfirm,
CreateAdd,
RecruiterOffline,
RecruiterNotHere,
RecruiterWrongGuild,
NotRecruiter,
JoinRequest,
NotPresent,
AccountLow,
Accepted,
NotFound,
Updated,
RanksUpdated,
RemoveLeader,
RemoveNotMember,
Removed,
RankingLeader,
RankingNotMember,
Unrecognized(i32),
}Expand description
Reply code sent with GUILD_REPLY packet
Variants§
Busy
NotApproved
AlreadyMember
NoCandidates
Exists
CreateBegin
CreateAddConfirm
CreateAdd
RecruiterOffline
RecruiterNotHere
RecruiterWrongGuild
NotRecruiter
JoinRequest
NotPresent
AccountLow
Accepted
NotFound
Updated
RanksUpdated
RemoveLeader
RemoveNotMember
Removed
RankingLeader
RankingNotMember
Unrecognized(i32)
Trait Implementations§
Source§impl Clone for GuildReply
impl Clone for GuildReply
Source§fn clone(&self) -> GuildReply
fn clone(&self) -> GuildReply
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 GuildReply
impl Debug for GuildReply
Source§impl Default for GuildReply
impl Default for GuildReply
Source§fn default() -> GuildReply
fn default() -> GuildReply
Returns the “default value” for a type. Read more
Source§impl From<GuildReply> for i32
impl From<GuildReply> for i32
Source§fn from(value: GuildReply) -> i32
fn from(value: GuildReply) -> i32
Converts to this type from the input type.
Source§impl From<i32> for GuildReply
impl From<i32> for GuildReply
Source§impl PartialEq for GuildReply
impl PartialEq for GuildReply
impl Copy for GuildReply
impl Eq for GuildReply
impl StructuralPartialEq for GuildReply
Auto Trait Implementations§
impl Freeze for GuildReply
impl RefUnwindSafe for GuildReply
impl Send for GuildReply
impl Sync for GuildReply
impl Unpin for GuildReply
impl UnsafeUnpin for GuildReply
impl UnwindSafe for GuildReply
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