usecrate::knot::TreeKnot;/// Ветвь дерева.
/// Хранит ключ (значение), правый и левый узел.
/// Используются те же трейты, что и для узла (см. knot.rs)
#[derive(Debug, Clone, PartialOrd, PartialEq)]pub(crate)structNode<T>
where T: Copy + Clone + PartialOrd + PartialEq
{pub(crate)key: T,
pub(crate)right:TreeKnot<T>,
pub(crate)left:TreeKnot<T>,
}