pub struct Node<'a> {
pub value: Option<&'a Rec<'static>>,
pub path_regex: Option<RegexEq>,
pub children: HashMap<String, RNode<'a>>,
pub parent: Option<RNode<'a>>,
}
Fields§
§value: Option<&'a Rec<'static>>
§path_regex: Option<RegexEq>
§children: HashMap<String, RNode<'a>>
§parent: Option<RNode<'a>>
Implementations§
Trait Implementations§
impl<'a> StructuralPartialEq for Node<'a>
Auto Trait Implementations§
impl<'a> Freeze for Node<'a>
impl<'a> !RefUnwindSafe for Node<'a>
impl<'a> !Send for Node<'a>
impl<'a> !Sync for Node<'a>
impl<'a> Unpin for Node<'a>
impl<'a> !UnwindSafe for Node<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more