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

pub struct NotSupportedError(_);

Used to indicate an unsuccessful operation when none of the other NativeError objects are an appropriate indication of the failure cause.

Trait Implementations

impl Clone for NotSupportedError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NotSupportedError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<NotSupportedError> for Error
[src]

[src]

Performs the conversion.

impl TryFrom<Error> for NotSupportedError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl From<NotSupportedError> for DomException
[src]

[src]

Performs the conversion.

impl TryFrom<DomException> for NotSupportedError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl AsRef<Reference> for NotSupportedError
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl TryFrom<NotSupportedError> for Reference
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Reference> for NotSupportedError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Value> for NotSupportedError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl JsSerialize for NotSupportedError
[src]

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

impl InstanceOf for NotSupportedError
[src]

[src]

Checks whenever a given Reference if of type Self.

impl Display for NotSupportedError
[src]

[src]

Formats the value using the given formatter. Read more

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