[][src]Enum twilight_http::request::channel::message::create_message::CreateMessageError

#[non_exhaustive]pub enum CreateMessageError {
    ContentInvalid {
        content: String,
    },
    EmbedTooLarge {
        embed: Box<Embed>,
        source: EmbedValidationError,
    },
}

The error created when a messsage can not be created as configured.

Variants (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.
ContentInvalid

Returned when the content is over 2000 UTF-16 characters.

Fields of ContentInvalid

content: String

Provided content.

EmbedTooLarge

Returned when the length of the embed is over 6000 characters.

Fields of EmbedTooLarge

embed: Box<Embed>

Provided embed.

source: EmbedValidationError

The source of the error.

Trait Implementations

impl Clone for CreateMessageError[src]

impl Debug for CreateMessageError[src]

impl Display for CreateMessageError[src]

impl Error for CreateMessageError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,