pub struct NodeMetrics {
pub char_count: u32,
pub tag_count: u32,
pub link_char_count: u32,
pub link_tag_count: u32,
}Fields§
§char_count: u32§tag_count: u32§link_char_count: u32§link_tag_count: u32Implementations§
Source§impl NodeMetrics
impl NodeMetrics
pub fn new() -> Self
pub fn combine(&mut self, other: &NodeMetrics)
pub fn calculate_simple_density(&self) -> f32
Trait Implementations§
Source§impl Clone for NodeMetrics
impl Clone for NodeMetrics
Source§fn clone(&self) -> NodeMetrics
fn clone(&self) -> NodeMetrics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NodeMetrics
impl Debug for NodeMetrics
Source§impl Default for NodeMetrics
impl Default for NodeMetrics
Source§fn default() -> NodeMetrics
fn default() -> NodeMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NodeMetrics
impl RefUnwindSafe for NodeMetrics
impl Send for NodeMetrics
impl Sync for NodeMetrics
impl Unpin for NodeMetrics
impl UnsafeUnpin for NodeMetrics
impl UnwindSafe for NodeMetrics
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