Enum yar_client::error::YarError [] [src]

pub enum YarError {
    URLError(&'static str),
    TimeError(ParseIntError),
    CURLError(Error),
    CallErr(String),
}

Error in Client calls

Variants

Error when url not contains http or https

The underlying error is num::ParseIntError.

remote call error

Trait Implementations

impl Debug for YarError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<ParseIntError> for YarError
[src]

[src]

Performs the conversion.

impl From<Error> for YarError
[src]

[src]

Performs the conversion.

impl Error for YarError
[src]

[src]

A short description of the error. Read more

[src]

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

impl Display for YarError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for YarError

impl Sync for YarError