pub trait AnyDhtHashExt: Clone + Sized {
    fn into_kitsune(self) -> Arc<KitsuneBasis>;
    fn into_kitsune_raw(self) -> KitsuneBasis;

    fn to_kitsune(&self) -> Arc<KitsuneBasis> { ... }
}
Expand description

Extension trait for holo/kitsune conversion

Required Methods

convert into Arc type

convert into Kitsune type

Provided Methods

to Arc type

Implementations on Foreign Types

Implementors