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

pub struct InvalidCharacterError(_);

Used to indicate the string contains one or more characters which are invalid.

Trait Implementations

impl Clone for InvalidCharacterError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for InvalidCharacterError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<InvalidCharacterError> for Error
[src]

[src]

Performs the conversion.

impl TryFrom<Error> for InvalidCharacterError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl From<InvalidCharacterError> for DomException
[src]

[src]

Performs the conversion.

impl TryFrom<DomException> for InvalidCharacterError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl AsRef<Reference> for InvalidCharacterError
[src]

[src]

Performs the conversion.

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

[src]

Performs the conversion.

impl TryFrom<InvalidCharacterError> for Reference
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Reference> for InvalidCharacterError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl TryFrom<Value> for InvalidCharacterError
[src]

The type returned in the event of a conversion error.

[src]

Performs the conversion.

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

The type returned in the event of a conversion error.

[src]

Performs the conversion.

impl JsSerialize for InvalidCharacterError
[src]

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

impl InstanceOf for InvalidCharacterError
[src]

[src]

Checks whenever a given Reference if of type Self.

impl Display for InvalidCharacterError
[src]

[src]

Formats the value using the given formatter. Read more

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