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

pub struct InvalidAccessError(_);

Occurs when an object does not support an operation or argument.

Trait Implementations

impl Clone for InvalidAccessError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InvalidAccessError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for InvalidAccessError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for InvalidAccessError
[src]

impl From<InvalidAccessError> for Error
[src]

[src]

Performs the conversion.

impl TryFrom<Error> for InvalidAccessError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl From<InvalidAccessError> for DomException
[src]

[src]

Performs the conversion.

impl TryFrom<DomException> for InvalidAccessError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl AsRef<Reference> for InvalidAccessError
[src]

[src]

Performs the conversion.

impl ReferenceType for InvalidAccessError
[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<InvalidAccessError> for Reference
[src]

[src]

Performs the conversion.

impl TryFrom<InvalidAccessError> for Reference
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Reference> for InvalidAccessError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Value> for InvalidAccessError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl JsSerialize for InvalidAccessError
[src]

impl IError for InvalidAccessError
[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 InvalidAccessError
[src]

impl InstanceOf for InvalidAccessError
[src]

[src]

Checks whenever a given Reference if of type Self.

impl Display for InvalidAccessError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for InvalidAccessError
[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