Enum url_crawler::UrlEntry[][src]

pub enum UrlEntry {
    Html {
        url: Url,
    },
    File {
        url: Url,
        content_type: String,
        length: u64,
        modified: Option<DateTime<FixedOffset>>,
    },
}

URLs discovered found by the web crawler

Variants

A URL with the "text/html" content type

Fields of Html

All other detected content.

Fields of File

Trait Implementations

impl Debug for UrlEntry
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for UrlEntry

impl Sync for UrlEntry