Crate tld_extract

source ·
Expand description

Use the public suffix list to resolve the top-level domain name

Examples

use tld_extract::TLDExtract;
let source = tld_extract::Source::Snapshot;
let suffix = tld_extract::SuffixList::new(source, false, None);
let mut extract = TLDExtract::new(suffix, true).unwrap();
let e = extract.extract("  www.setup.zip");
println!("{:#?}", e);

Structs

Enums

Type Aliases