pub trait ToWeakNode {
// Required method
fn to_weak_node(self: Arc<Self>) -> WeakNode;
}Expand description
Used to convert nodes into WeakNode which is stored in the cache. This should be implemented
using the ToWeakNode derive macro.
pub trait ToWeakNode {
// Required method
fn to_weak_node(self: Arc<Self>) -> WeakNode;
}Used to convert nodes into WeakNode which is stored in the cache. This should be implemented
using the ToWeakNode derive macro.