pub trait OverMut: Over {
type NodeItemMut<'a, V, M, P>: NodeItemMut<'a, V, M, P>
where M: MemoryPolicy,
P: PinnedStorage,
V: TreeVariant + 'a,
Self: 'a;
}
Expand description
Required Associated Types§
Sourcetype NodeItemMut<'a, V, M, P>: NodeItemMut<'a, V, M, P>
where
M: MemoryPolicy,
P: PinnedStorage,
V: TreeVariant + 'a,
Self: 'a
type NodeItemMut<'a, V, M, P>: NodeItemMut<'a, V, M, P> where M: MemoryPolicy, P: PinnedStorage, V: TreeVariant + 'a, Self: 'a
Part of the mutable iterator item which only depends on the node’s internal data.
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.