pub trait AnyLinkableHashExt: 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<Kitsune> type

convert into Kitsune type

Provided Methods§

to Arc<Kitsune> type

Implementors§