Skip to main content

Error

Type Alias Error 

Source
pub type Error = CapabilityParseError;
Expand description

Backwards-compatible name for CapabilityParseError.

Aliased Type§

pub enum Error {
    InvalidScope(StoragePathError),
    InvalidScopeDelimiter(char),
    InvalidFormat,
    MissingActions,
    InvalidAction(char),
}

Variants§

§

InvalidScope(StoragePathError)

The scope is not a canonical WebDAV path.

§

InvalidScopeDelimiter(char)

The scope contains a capability wire-format delimiter.

§

InvalidFormat

The capability does not follow the <scope>:<actions> format.

§

MissingActions

No actions were provided.

§

InvalidAction(char)

The action is not supported.