Trait ToPrefixes

Source
pub trait ToPrefixes {
    // Required method
    fn to_prefixes<T>(&self, txn: &MutTxn<'_, T>, branch: &Branch) -> Prefixes;
}

Required Methods§

Source

fn to_prefixes<T>(&self, txn: &MutTxn<'_, T>, branch: &Branch) -> Prefixes

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a> ToPrefixes for &'a [&'a str]

Source§

fn to_prefixes<T>(&self, txn: &MutTxn<'_, T>, branch: &Branch) -> Prefixes

Source§

impl<'a> ToPrefixes for &'a [Inode]

Source§

fn to_prefixes<T>(&self, txn: &MutTxn<'_, T>, _: &Branch) -> Prefixes

Implementors§