pub struct FileTokenCounts {
pub operators: BTreeMap<String, usize>,
pub operands: BTreeSet<String>,
pub total_operators: usize,
pub total_operands: usize,
}Expand description
Per-file Halstead token counts.
Fields§
§operators: BTreeMap<String, usize>§operands: BTreeSet<String>§total_operators: usize§total_operands: usizeAuto Trait Implementations§
impl Freeze for FileTokenCounts
impl RefUnwindSafe for FileTokenCounts
impl Send for FileTokenCounts
impl Sync for FileTokenCounts
impl Unpin for FileTokenCounts
impl UnsafeUnpin for FileTokenCounts
impl UnwindSafe for FileTokenCounts
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