Struct maman::Page [] [src]

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

Fields

Methods

impl Page
[src]

Trait Implementations

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