pub trait GetLocator<T> {
    type LocatorType;

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

Required Associated Types§

Required Methods§

source

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

Implementors§