#[non_exhaustive]pub enum MessageParseError {
Malformed,
Http(SerenityError),
HttpNotAvailable,
}
Expand description
Error that can be returned from Message::convert
.
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.
Malformed
When the provided string does not adhere to any known guild message format
Http(SerenityError)
When message data retrieval via HTTP failed
HttpNotAvailable
When the gateway
feature is disabled and the required information was not in cache.
Trait Implementations§
Source§impl Debug for MessageParseError
impl Debug for MessageParseError
Source§impl Display for MessageParseError
impl Display for MessageParseError
Source§impl Error for MessageParseError
impl Error for MessageParseError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl !Freeze for MessageParseError
impl !RefUnwindSafe for MessageParseError
impl Send for MessageParseError
impl Sync for MessageParseError
impl Unpin for MessageParseError
impl !UnwindSafe for MessageParseError
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