pub trait PrefixLookup {
// Required method
fn vertexes_by_hex_prefix<'life0, 'life1, 'async_trait>(
&'life0 self,
hex_prefix: &'life1 [u8],
limit: usize,
) -> Pin<Box<dyn Future<Output = Result<Vec<VertexName>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Lookup vertexes by prefixes.