pub struct IndexSizeError(/* private fields */);Expand description
Occurs when an argument is out of range.
Trait Implementations§
Source§impl AsRef<Reference> for IndexSizeError
impl AsRef<Reference> for IndexSizeError
Source§impl Clone for IndexSizeError
impl Clone for IndexSizeError
Source§fn clone(&self) -> IndexSizeError
fn clone(&self) -> IndexSizeError
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 IndexSizeError
impl Debug for IndexSizeError
Source§impl Display for IndexSizeError
impl Display for IndexSizeError
Source§impl Error for IndexSizeError
impl Error for IndexSizeError
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<IndexSizeError> for DomException
impl From<IndexSizeError> for DomException
Source§fn from(value: IndexSizeError) -> Self
fn from(value: IndexSizeError) -> Self
Converts to this type from the input type.
Source§impl From<IndexSizeError> for Error
impl From<IndexSizeError> for Error
Source§fn from(value: IndexSizeError) -> Self
fn from(value: IndexSizeError) -> Self
Converts to this type from the input type.
Source§impl From<IndexSizeError> for Reference
impl From<IndexSizeError> for Reference
Source§fn from(value: IndexSizeError) -> Self
fn from(value: IndexSizeError) -> Self
Converts to this type from the input type.
Source§impl IError for IndexSizeError
impl IError for IndexSizeError
Source§impl InstanceOf for IndexSizeError
impl InstanceOf for IndexSizeError
Source§impl ReferenceType for IndexSizeError
impl ReferenceType for IndexSizeError
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 IndexSizeError
impl<'_r> TryFrom<&'_r Reference> for IndexSizeError
Source§impl<'_r> TryFrom<&'_r Value> for IndexSizeError
impl<'_r> TryFrom<&'_r Value> for IndexSizeError
Source§impl TryFrom<DomException> for IndexSizeError
impl TryFrom<DomException> for IndexSizeError
Source§impl TryFrom<Error> for IndexSizeError
impl TryFrom<Error> for IndexSizeError
Source§impl TryFrom<IndexSizeError> for Reference
impl TryFrom<IndexSizeError> for Reference
Source§impl TryFrom<Reference> for IndexSizeError
impl TryFrom<Reference> for IndexSizeError
Source§impl TryFrom<Value> for IndexSizeError
impl TryFrom<Value> for IndexSizeError
impl IDomException for IndexSizeError
impl JsSerialize for IndexSizeError
Auto Trait Implementations§
impl Freeze for IndexSizeError
impl RefUnwindSafe for IndexSizeError
impl Send for IndexSizeError
impl Sync for IndexSizeError
impl Unpin for IndexSizeError
impl UnwindSafe for IndexSizeError
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