#[non_exhaustive]pub enum ImageSourceUrlErrorType {
ProtocolUnsupported {
url: String,
},
}
Available on crate feature
builder
only.Expand description
Type of ImageSourceUrlError
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.
ProtocolUnsupported
The Protocol of the URL is unsupported by the Discord REST API.
Refer to ImageSource::url
for a list of protocols that are acceptable.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ImageSourceUrlErrorType
impl RefUnwindSafe for ImageSourceUrlErrorType
impl Send for ImageSourceUrlErrorType
impl Sync for ImageSourceUrlErrorType
impl Unpin for ImageSourceUrlErrorType
impl UnwindSafe for ImageSourceUrlErrorType
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