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§
type Out: DecompressedSubtree<'a, T>
Required Methods§
fn decompress<S>(store: &'a S, id: &T::TreeId) -> Self::Out
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.