pub struct NotSupportedError { /* private fields */ }Expand description
The requested operation is not supported.
Implementations§
Trait Implementations§
Source§impl Debug for NotSupportedError
impl Debug for NotSupportedError
Source§impl Display for NotSupportedError
impl Display for NotSupportedError
Source§impl Error for NotSupportedError
impl Error for NotSupportedError
1.30.0 · 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()
Source§impl From<NotSupportedError> for EventLoopError
impl From<NotSupportedError> for EventLoopError
Source§fn from(value: NotSupportedError) -> Self
fn from(value: NotSupportedError) -> Self
Converts to this type from the input type.
Source§impl From<NotSupportedError> for RequestError
impl From<NotSupportedError> for RequestError
Source§fn from(value: NotSupportedError) -> Self
fn from(value: NotSupportedError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NotSupportedError
impl RefUnwindSafe for NotSupportedError
impl Send for NotSupportedError
impl Sync for NotSupportedError
impl Unpin for NotSupportedError
impl UnwindSafe for NotSupportedError
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