Type Alias HttpStoreEntry

Source
pub type HttpStoreEntry = Entry<HttpStoreFile, HttpStoreDirectory>;
Expand description

Represents an entry in the HTTP store (file or directory).

Aliased Type§

enum HttpStoreEntry {
    File(HttpStoreFile),
    Directory(HttpStoreDirectory),
}

Variants§

§

File(HttpStoreFile)

A file entry.

§

Directory(HttpStoreDirectory)

A directory entry.