pub trait Mergeable<K> {
    // Required method
    fn try_borrow<'a>(&'a self) -> Result<&'a K, Error>;
}

Required Methods§

source

fn try_borrow<'a>(&'a self) -> Result<&'a K, Error>

Implementations on Foreign Types§

source§

impl<K, V> Mergeable<K> for Result<(K, V), Error>

source§

fn try_borrow<'a>(&'a self) -> Result<&'a K, Error>

Implementors§

source§

impl<K, V> Mergeable<K> for Entry<'_, K, V>