pub struct IndexReport {
pub files_indexed: usize,
pub files_reused: usize,
pub files_removed: usize,
pub symbols_indexed: usize,
pub references_indexed: usize,
pub elapsed_ms: u128,
pub mode: IndexMode,
pub warnings: Vec<IndexWarning>,
}Fields§
§files_indexed: usize§files_reused: usize§files_removed: usize§symbols_indexed: usize§references_indexed: usize§elapsed_ms: u128§mode: IndexMode§warnings: Vec<IndexWarning>Trait Implementations§
Source§impl Clone for IndexReport
impl Clone for IndexReport
Source§fn clone(&self) -> IndexReport
fn clone(&self) -> IndexReport
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 moreAuto Trait Implementations§
impl Freeze for IndexReport
impl RefUnwindSafe for IndexReport
impl Send for IndexReport
impl Sync for IndexReport
impl Unpin for IndexReport
impl UnsafeUnpin for IndexReport
impl UnwindSafe for IndexReport
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