Enum hyperdav::Error[][src]

pub enum Error {
    NetworkingError(Error),
    PropfindParse(PropfindParseError),
    FailedRequest(StatusCode),
    UrlParsingError(ParseError),
}

Our custom error type using Failure.

Variants

Used when a networking error occurs.

Used when propfind fails.

Used when the request failes.

Used when we cannot parse the URL.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Error

impl Sync for Error