Struct stdweb::web::error::IndexSizeError [] [src]

pub struct IndexSizeError(_);

Occurs when an argument is out of range.

Trait Implementations

impl Clone for IndexSizeError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for IndexSizeError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<IndexSizeError> for Error
[src]

[src]

Performs the conversion.

impl TryFrom<Error> for IndexSizeError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl From<IndexSizeError> for DomException
[src]

[src]

Performs the conversion.

impl TryFrom<DomException> for IndexSizeError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl AsRef<Reference> for IndexSizeError
[src]

[src]

Performs the conversion.

impl ReferenceType for IndexSizeError
[src]

[src]

Converts a given reference into a concrete reference-like wrapper. Doesn't do any type checking; highly unsafe to use! Read more

impl From<IndexSizeError> for Reference
[src]

[src]

Performs the conversion.

impl TryFrom<IndexSizeError> for Reference
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Reference> for IndexSizeError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'_r> TryFrom<&'_r Reference> for IndexSizeError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Value> for IndexSizeError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl<'_r> TryFrom<&'_r Value> for IndexSizeError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl JsSerialize for IndexSizeError
[src]

impl IError for IndexSizeError
[src]

[src]

Returns a human-readable description of the error. Read more

[src]

Returns a name specifiying the type of error. Read more

impl IDomException for IndexSizeError
[src]

impl InstanceOf for IndexSizeError
[src]

[src]

Checks whenever a given Reference if of type Self.

impl Display for IndexSizeError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for IndexSizeError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations