pub struct FileChunk {
pub files: Vec<FileMetadata>,
pub index: usize,
pub total_chunks: usize,
}
Expand description
Simple file chunk for processing
Fields§
§files: Vec<FileMetadata>
Files in this chunk
index: usize
Chunk index
total_chunks: usize
Total number of chunks
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FileChunk
impl RefUnwindSafe for FileChunk
impl Send for FileChunk
impl Sync for FileChunk
impl Unpin for FileChunk
impl UnwindSafe for FileChunk
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