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