pub struct WorkspaceIndexSnapshot {
pub root: String,
pub file_count: usize,
pub indexed_at: Option<String>,
pub largest_files: Vec<IndexedFile>,
}Fields§
§root: String§file_count: usize§indexed_at: Option<String>§largest_files: Vec<IndexedFile>Trait Implementations§
Source§impl Clone for WorkspaceIndexSnapshot
impl Clone for WorkspaceIndexSnapshot
Source§fn clone(&self) -> WorkspaceIndexSnapshot
fn clone(&self) -> WorkspaceIndexSnapshot
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WorkspaceIndexSnapshot
impl Debug for WorkspaceIndexSnapshot
Source§impl Default for WorkspaceIndexSnapshot
impl Default for WorkspaceIndexSnapshot
Source§fn default() -> WorkspaceIndexSnapshot
fn default() -> WorkspaceIndexSnapshot
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WorkspaceIndexSnapshot
impl RefUnwindSafe for WorkspaceIndexSnapshot
impl Send for WorkspaceIndexSnapshot
impl Sync for WorkspaceIndexSnapshot
impl Unpin for WorkspaceIndexSnapshot
impl UnsafeUnpin for WorkspaceIndexSnapshot
impl UnwindSafe for WorkspaceIndexSnapshot
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