Struct maman::Page [] [src]

pub struct Page {
    pub url: Serde<Url>,
    pub document: String,
    pub headers: BTreeMap<String, String>,
    pub status: String,
    pub http_version: String,
    pub urls: Vec<Serde<Url>>,
}

Fields

Methods

impl Page
[src]

Trait Implementations

impl Debug for Page
[src]

Formats the value using the given formatter.

impl TokenSink for Page
[src]

Process a token.

Used in the markup declaration open state. By default, this always returns false and thus all CDATA sections are tokenized as bogus comments. https://html.spec.whatwg.org/multipage/#markup-declaration-open-state Read more