pub enum Field {
Original,
Timestamp,
UrlKey,
MimeType,
StatusCode,
Digest,
Redirect,
RobotFlags,
Length,
Offset,
Filename,
}
Expand description
All fields that single entries in the archives’ database have
Variants§
Original
The original Location/URL of the memeto
Timestamp
The timestamp when the memeto was stored
UrlKey
A simplified variant of a URL that represents semantic equality of URLs,
e.g. http://example.com
and http://www.example.com:80/
have the same key
MimeType
The content type of teh resource, e.g. text/html
StatusCode
The HTTP status code at crawl time, e.g. 200
, 404
, 302
Digest
A Hash Value?
Redirect
…
RobotFlags
…
Length
The length of the memeto
Offset
The offset of the memeto within containing archive
Filename
The filename of a compressed archive that contains the memeto
Trait Implementations§
impl Copy for Field
impl Eq for Field
impl StructuralPartialEq for Field
Auto Trait Implementations§
impl Freeze for Field
impl RefUnwindSafe for Field
impl Send for Field
impl Sync for Field
impl Unpin for Field
impl UnwindSafe for Field
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more