pub struct IndexerStatusPayload {
pub phase: String,
pub files_processed: usize,
pub files_total: usize,
pub current_file: Option<String>,
}Fields§
§phase: StringCurrent indexing phase.
files_processed: usizeFiles processed so far.
files_total: usizeTotal files to process.
current_file: Option<String>Current file being processed.
Trait Implementations§
Source§impl Clone for IndexerStatusPayload
impl Clone for IndexerStatusPayload
Source§fn clone(&self) -> IndexerStatusPayload
fn clone(&self) -> IndexerStatusPayload
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 IndexerStatusPayload
impl Debug for IndexerStatusPayload
Auto Trait Implementations§
impl Freeze for IndexerStatusPayload
impl RefUnwindSafe for IndexerStatusPayload
impl Send for IndexerStatusPayload
impl Sync for IndexerStatusPayload
impl Unpin for IndexerStatusPayload
impl UnsafeUnpin for IndexerStatusPayload
impl UnwindSafe for IndexerStatusPayload
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