Enum screeps_api::sync::SyncError [] [src]

pub enum SyncError {
    Io(Error),
    Url(ParseError),
    Tls(Error),
}

Error that can occur from building a SyncApi.

Variants

The tokio core failed to start.

The URL failed to parse.

The TLS connector failed.

Trait Implementations

impl Debug for SyncError
[src]

[src]

Formats the value using the given formatter.

impl From<Error> for SyncError
[src]

[src]

Performs the conversion.

impl From<ParseError> for SyncError
[src]

[src]

Performs the conversion.

impl From<Error> for SyncError
[src]

[src]

Performs the conversion.

impl Display for SyncError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for SyncError
[src]

[src]

A short description of the error. Read more

[src]

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