Crates.io | unhtml |
lib.rs | unhtml |
version | 0.8.0 |
source | src |
created_at | 2018-12-02 16:42:24.09068 |
updated_at | 2020-11-07 10:22:42.482889 |
description | A magic html parser |
homepage | |
repository | https://github.com/Hexilee/unhtml.rs |
max_upload_size | |
id | 99692 |
size | 17,508 |
There are two trait
in crate unhtml
FromHtml
The only method of FromHtml
you should care about is fn from_html(html: &str) -> Result<Self, Error>
and this method is implemented for all types implemented FromStr<E, T>
impl<E, T> FromHtml for T
where E: failure::Fail,
T: FromStr<Err=E> {
fn from_html(html: &str) -> Result<Self, Error> {
Ok(T::from_str(html.trim())?)
}
}
You can implement FromHtml
automatically for struct
by crate unhtml_derive
VecFromHtml
VecFromHtml
is implemented for Vec<T> where T: FromHtml
by default
impl<T> VecFromHtml for Vec<T>
where T: FromHtml {
type Elem = T;
}
As FromHtml
is implemented for u8
by default
use unhtml::scraper::Html;
use unhtml::VecFromHtml;
let html = Html::parse_fragment(r#"
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="test">
<a href="1"></a>
<a href="2"></a>
<a href="3"></a>
</div>
</body>
</html>
"#);
let results = Vec::<u8>::from_attr("#test > a", "href", html.root_element()).unwrap();
assert_eq!(1u8, results[0]);
assert_eq!(2u8, results[1]);
assert_eq!(3u8, results[2]);