#[non_exhaustive]pub enum CreateGuildErrorType {
NameInvalid {
name: String,
},
TooManyChannels {
channels: Vec<GuildChannelFields>,
},
TooManyRoles {
roles: Vec<RoleFields>,
},
}
Expand description
Type of CreateGuildError
that occurred.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
NameInvalid
The name of the guild is either fewer than 2 UTF-16 characters or more than 100 UTF-16 characters.
TooManyChannels
The number of channels provided is too many.
The maximum amount is 500.
Fields
§
channels: Vec<GuildChannelFields>
Provided channels.
TooManyRoles
The number of roles provided is too many.
The maximum amount is 250.
Fields
§
roles: Vec<RoleFields>
Provided roles.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CreateGuildErrorType
impl RefUnwindSafe for CreateGuildErrorType
impl Send for CreateGuildErrorType
impl Sync for CreateGuildErrorType
impl Unpin for CreateGuildErrorType
impl UnwindSafe for CreateGuildErrorType
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