Trait DecompressedSubtree

Source
pub trait DecompressedSubtree<'a, T: Stored> {
    type Out: DecompressedSubtree<'a, T>;

    // Required method
    fn decompress<S>(store: &'a S, id: &T::TreeId) -> Self::Out
       where S: NodeStore<T::TreeId, R<'a> = T>;
}

Required Associated Types§

Required Methods§

Source

fn decompress<S>(store: &'a S, id: &T::TreeId) -> Self::Out
where S: NodeStore<T::TreeId, R<'a> = T>,

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.

Implementors§