pub struct NodeInfo {
pub node_type: NodeType,
pub size: usize,
pub depth: usize,
pub has_tag: bool,
pub has_anchor: bool,
pub is_alias: bool,
pub summary: String,
}Expand description
Detailed node information
Fields§
§node_type: NodeType§size: usize§depth: usize§has_tag: bool§has_anchor: bool§is_alias: bool§summary: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeInfo
impl RefUnwindSafe for NodeInfo
impl Send for NodeInfo
impl Sync for NodeInfo
impl Unpin for NodeInfo
impl UnsafeUnpin for NodeInfo
impl UnwindSafe for NodeInfo
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