pub struct EmbedProgress {
pub total_docs: usize,
pub processed_docs: usize,
pub total_chunks: usize,
pub processed_chunks: usize,
pub cached_chunks: usize,
pub computed_chunks: usize,
}Expand description
Embedding progress
Fields§
§total_docs: usize§processed_docs: usize§total_chunks: usize§processed_chunks: usize§cached_chunks: usize§computed_chunks: usizeTrait Implementations§
Source§impl Clone for EmbedProgress
impl Clone for EmbedProgress
Source§fn clone(&self) -> EmbedProgress
fn clone(&self) -> EmbedProgress
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 moreAuto Trait Implementations§
impl Freeze for EmbedProgress
impl RefUnwindSafe for EmbedProgress
impl Send for EmbedProgress
impl Sync for EmbedProgress
impl Unpin for EmbedProgress
impl UnwindSafe for EmbedProgress
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