Enum influx_db_client::error::Error [] [src]

pub enum Error {
    SyntaxError(String),
    InvalidCredentials(String),
    DataBaseDoesNotExist(String),
    RetentionPolicyDoesNotExist(String),
    Communication(String),
    Unknow(String),
}

The error of influxdb client

Variants

Syntax error, some is bug, some is SQL error. If it's a bug, welcome to PR.

Invalid credentials

The specified database does not exist

The specified retention policy does not exist

Some error on build url or io.

Some other error, I don't expect

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for Error
[src]

[src]

Performs the conversion.

impl From<Error> for Error
[src]

[src]

Performs the conversion.

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

impl Send for Error

impl Sync for Error