pub trait GetLocator<T> {
    type LocatorType;

    fn get_locator(&self, item: Option<T>) -> Self::LocatorType;
}

Required Associated Types§

Required Methods§

Implementors§