[][src]Struct webpage::html::HTML

pub struct HTML {
    pub title: Option<String>,
    pub description: Option<String>,
    pub url: Option<String>,
    pub feed: Option<String>,
    pub language: Option<String>,
    pub text_content: String,
    pub meta: HashMap<String, String>,
    pub opengraph: Opengraph,
    pub schema_org: Vec<SchemaOrg>,
}

Fields

title: Option<String>

<title>

description: Option<String>

meta description

url: Option<String>

Canonical URL

feed: Option<String>

Feed URL (atom, rss, ..)

language: Option<String>

Language as specified in the document

text_content: String

Text content inside <body>, all tags stripped

meta: HashMap<String, String>

Flattened down list of meta properties

opengraph: Opengraph

Opengraph tags

schema_org: Vec<SchemaOrg>

Schema.org data

Implementations

impl HTML[src]

pub fn from_dom(dom: RcDom, url: Option<String>) -> Self[src]

Construct HTML from RcDom, optionally with a URL set

pub fn from_file(path: &str, url: Option<String>) -> Result<Self, Error>[src]

Construct HTML from File, optionally with a URL set

pub fn from_string(html: String, url: Option<String>) -> Result<Self, Error>[src]

Construct HTML from String, optionally with a URL set

Examples

use webpage::HTML;

let input = String::from("<html><head><title>Hello</title></head><body>Contents");
let html = HTML::from_string(input, None);
assert!(html.is_ok());

Trait Implementations

impl Debug for HTML[src]

Auto Trait Implementations

impl RefUnwindSafe for HTML

impl Send for HTML

impl Sync for HTML

impl Unpin for HTML

impl UnwindSafe for HTML

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.