pub struct Report {Show 15 fields
pub current_provider: String,
pub current_model: Option<String>,
pub total_threads: usize,
pub database_counts: BTreeMap<String, usize>,
pub model_counts: BTreeMap<String, usize>,
pub database_rows_to_change: usize,
pub rollout_counts: BTreeMap<String, usize>,
pub rollout_model_counts: BTreeMap<String, usize>,
pub rollout_files: usize,
pub rollout_files_to_change: usize,
pub duplicate_session_meta_lines: usize,
pub missing_session_index_entries: usize,
pub stale_session_index_entries: usize,
pub missing_rollout_files: usize,
pub backup: Option<PathBuf>,
}Fields§
§current_provider: String§current_model: Option<String>§total_threads: usize§database_counts: BTreeMap<String, usize>§model_counts: BTreeMap<String, usize>§database_rows_to_change: usize§rollout_counts: BTreeMap<String, usize>§rollout_model_counts: BTreeMap<String, usize>§rollout_files: usize§rollout_files_to_change: usize§duplicate_session_meta_lines: usize§missing_session_index_entries: usize§stale_session_index_entries: usize§missing_rollout_files: usize§backup: Option<PathBuf>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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