Expand description
Use the public suffix list to resolve the top-level domain name
§Examples
use tldextract_rs::TLDExtract;
let source = tldextract_rs::Source::Snapshot;
let suffix = tldextract_rs::SuffixList::new(source, false, None);
let mut extract = TLDExtract::new(suffix, true).unwrap();
let e = extract.extract(" www.setup.zip");
println!("{:#?}", e);
Structs§
- Extract
Result - ExtractResult
- Suffix
List - Mainly implementing the resolution and classification of domain names
- TLDExtract
- TLDExtract
- TLDTrie
Tree - TLDTrieTree
Enums§
- Source
- Where to read data as a prefix list
- TLDExtract
Error - TLDExtractError Enum
Type Aliases§
- Result
- TLDExtractError