pub struct NotSupportedError(/* private fields */);
Expand description
Used to indicate an unsuccessful operation when none of the other NativeError objects are an appropriate indication of the failure cause.
Trait Implementations§
Source§impl AsRef<Reference> for NotSupportedError
impl AsRef<Reference> for NotSupportedError
Source§impl Clone for NotSupportedError
impl Clone for NotSupportedError
Source§fn clone(&self) -> NotSupportedError
fn clone(&self) -> NotSupportedError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl From<NotSupportedError> for DomException
impl From<NotSupportedError> for DomException
Source§fn from(value: NotSupportedError) -> Self
fn from(value: NotSupportedError) -> Self
Converts to this type from the input type.
Source§impl From<NotSupportedError> for Error
impl From<NotSupportedError> for Error
Source§fn from(value: NotSupportedError) -> Self
fn from(value: NotSupportedError) -> Self
Converts to this type from the input type.
Source§impl From<NotSupportedError> for Reference
impl From<NotSupportedError> for Reference
Source§fn from(value: NotSupportedError) -> Self
fn from(value: NotSupportedError) -> Self
Converts to this type from the input type.
Source§impl IError for NotSupportedError
impl IError for NotSupportedError
Source§impl InstanceOf for NotSupportedError
impl InstanceOf for NotSupportedError
Source§impl ReferenceType for NotSupportedError
impl ReferenceType for NotSupportedError
Source§unsafe fn from_reference_unchecked(reference: Reference) -> Self
unsafe fn from_reference_unchecked(reference: Reference) -> Self
Converts a given reference into a concrete reference-like wrapper.
Doesn’t do any type checking; highly unsafe to use!
Source§impl<'_r> TryFrom<&'_r Reference> for NotSupportedError
impl<'_r> TryFrom<&'_r Reference> for NotSupportedError
Source§impl<'_r> TryFrom<&'_r Value> for NotSupportedError
impl<'_r> TryFrom<&'_r Value> for NotSupportedError
Source§impl TryFrom<DomException> for NotSupportedError
impl TryFrom<DomException> for NotSupportedError
Source§impl TryFrom<Error> for NotSupportedError
impl TryFrom<Error> for NotSupportedError
Source§impl TryFrom<NotSupportedError> for Reference
impl TryFrom<NotSupportedError> for Reference
Source§impl TryFrom<Reference> for NotSupportedError
impl TryFrom<Reference> for NotSupportedError
Source§impl TryFrom<Value> for NotSupportedError
impl TryFrom<Value> for NotSupportedError
impl IDomException for NotSupportedError
impl JsSerialize for NotSupportedError
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