pub struct FrontendStats {Show 14 fields
pub files: usize,
pub lines: usize,
pub files_strict: usize,
pub files_nonstrict: usize,
pub types_allocated: usize,
pub type_packs_allocated: usize,
pub bool_singletons_minted: usize,
pub str_singletons_minted: usize,
pub unique_str_singletons_minted: usize,
pub time_read: f64,
pub time_parse: f64,
pub time_check: f64,
pub time_lint: f64,
pub dynamic_constraints_created: usize,
}Expand description
Frontend::Stats (nested struct)
Fields§
§files: usize§lines: usize§files_strict: usize§files_nonstrict: usize§types_allocated: usize§type_packs_allocated: usize§bool_singletons_minted: usize§str_singletons_minted: usize§unique_str_singletons_minted: usize§time_read: f64§time_parse: f64§time_check: f64§time_lint: f64§dynamic_constraints_created: usizeTrait Implementations§
Source§impl Clone for FrontendStats
impl Clone for FrontendStats
Source§fn clone(&self) -> FrontendStats
fn clone(&self) -> FrontendStats
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 moreimpl Copy for FrontendStats
Source§impl Debug for FrontendStats
impl Debug for FrontendStats
Source§impl Default for FrontendStats
impl Default for FrontendStats
Source§fn default() -> FrontendStats
fn default() -> FrontendStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FrontendStats
impl RefUnwindSafe for FrontendStats
impl Send for FrontendStats
impl Sync for FrontendStats
impl Unpin for FrontendStats
impl UnsafeUnpin for FrontendStats
impl UnwindSafe for FrontendStats
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