1
2
3
4
5
6
use std::cell::Ref;

use super::NodeState;

/// Short-hand for the output read-reference of a node.
pub type NodeRef<'a, T> = Ref<'a, NodeState<T>>;