pub struct AbortError(/* private fields */);Expand description
Used to indicate that the operation was aborted.
Trait Implementations§
Source§impl AsRef<Reference> for AbortError
impl AsRef<Reference> for AbortError
Source§impl Clone for AbortError
impl Clone for AbortError
Source§fn clone(&self) -> AbortError
fn clone(&self) -> AbortError
Returns a duplicate 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 AbortError
impl Debug for AbortError
Source§impl Display for AbortError
impl Display for AbortError
Source§impl Error for AbortError
impl Error for AbortError
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<AbortError> for DomException
impl From<AbortError> for DomException
Source§fn from(value: AbortError) -> Self
fn from(value: AbortError) -> Self
Converts to this type from the input type.
Source§impl From<AbortError> for Error
impl From<AbortError> for Error
Source§fn from(value: AbortError) -> Self
fn from(value: AbortError) -> Self
Converts to this type from the input type.
Source§impl From<AbortError> for Reference
impl From<AbortError> for Reference
Source§fn from(value: AbortError) -> Self
fn from(value: AbortError) -> Self
Converts to this type from the input type.
Source§impl IError for AbortError
impl IError for AbortError
Source§impl InstanceOf for AbortError
impl InstanceOf for AbortError
Source§impl ReferenceType for AbortError
impl ReferenceType for AbortError
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 AbortError
impl<'_r> TryFrom<&'_r Reference> for AbortError
Source§impl<'_r> TryFrom<&'_r Value> for AbortError
impl<'_r> TryFrom<&'_r Value> for AbortError
Source§impl TryFrom<AbortError> for Reference
impl TryFrom<AbortError> for Reference
Source§impl TryFrom<DomException> for AbortError
impl TryFrom<DomException> for AbortError
Source§impl TryFrom<Error> for AbortError
impl TryFrom<Error> for AbortError
Source§impl TryFrom<Reference> for AbortError
impl TryFrom<Reference> for AbortError
Source§impl TryFrom<Value> for AbortError
impl TryFrom<Value> for AbortError
impl IDomException for AbortError
impl JsSerialize for AbortError
Auto Trait Implementations§
impl Freeze for AbortError
impl RefUnwindSafe for AbortError
impl Send for AbortError
impl Sync for AbortError
impl Unpin for AbortError
impl UnwindSafe for AbortError
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