pub enum GuildMemberFlags {
DID_REJOIN = 1,
COMPLETED_ONBOARDING = 2,
BYPASSES_VERIFICATION = 4,
STARTED_ONBOARDING = 8,
}Expand description
Variants§
DID_REJOIN = 1
Member has left and rejoined the guild
COMPLETED_ONBOARDING = 2
Member has completed onboarding
BYPASSES_VERIFICATION = 4
Member is exempt from guild verification requirements
STARTED_ONBOARDING = 8
Member has started onboarding
Auto Trait Implementations§
impl Freeze for GuildMemberFlags
impl RefUnwindSafe for GuildMemberFlags
impl Send for GuildMemberFlags
impl Sync for GuildMemberFlags
impl Unpin for GuildMemberFlags
impl UnwindSafe for GuildMemberFlags
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