csv_lib 1.0.7

Library for parsing CSV files using memory-mapped I/O, with low alloc, and AVX2/NEON support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


/// ## EditablePersist
/// - A struct that holds a param.
/// - This param is editable in each thread
/// - Useful to acumulate info in each row iteration, without block the thread calling
#[allow(dead_code)]
#[derive(Debug, Clone)]
pub struct EditablePersist<T> where T: Clone {
    target: T,
}