pub trait List {
    fn find<'a, T>(&self, labels: T) -> Info
    where
        T: Iterator<Item = &'a [u8]>
; fn suffix<'a>(&self, name: &'a [u8]) -> Option<Suffix<'a>> { ... } fn domain<'a>(&self, name: &'a [u8]) -> Option<Domain<'a>> { ... } }
Expand description

A list of all public suffixes

Required Methods

Finds the suffix information of the given input labels

NB: labels must be in reverse order

Provided Methods

Get the public suffix of the domain

Get the registrable domain

Implementations on Foreign Types

Implementors