pub struct BBTree {
pub nodes: HashMap<i32, BBNode>,
/* private fields */
}
Expand description
Main data scructure for parsed BBCode, usually a root node and child nodes
Fields§
§nodes: HashMap<i32, BBNode>
Nodes stored in the tree
Implementations§
Trait Implementations§
impl Eq for BBTree
impl StructuralPartialEq for BBTree
Auto Trait Implementations§
impl Freeze for BBTree
impl RefUnwindSafe for BBTree
impl Send for BBTree
impl Sync for BBTree
impl Unpin for BBTree
impl UnwindSafe for BBTree
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