pub struct ProjectStats {
pub conversations: usize,
pub generated_files: usize,
pub dependencies: usize,
pub features: usize,
pub lines_of_code: usize,
pub rust_files: usize,
}Expand description
Project statistics
Fields§
§conversations: usizeNumber of AI conversations in the project
generated_files: usizeNumber of files generated by AI
dependencies: usizeNumber of dependencies in the project
features: usizeNumber of features added to the project
lines_of_code: usizeTotal lines of code in the project
rust_files: usizeNumber of Rust source files in the project
Trait Implementations§
Source§impl Debug for ProjectStats
impl Debug for ProjectStats
Source§impl Default for ProjectStats
impl Default for ProjectStats
Source§fn default() -> ProjectStats
fn default() -> ProjectStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ProjectStats
impl RefUnwindSafe for ProjectStats
impl Send for ProjectStats
impl Sync for ProjectStats
impl Unpin for ProjectStats
impl UnwindSafe for ProjectStats
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