statue 0.3.1

Easier way to query selectors for static HTML pages.
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub(crate) struct SelSyntax(pub(crate) String);

impl SelSyntax {
    pub(crate) fn new(cand: String) -> Option<Self> {
        Some(Self(cand))
    }
}