pub struct CsvPartialCache<T> {
pub path: PathBuf,
pub items: Box<[T]>,
}
Expand description
An index keeping the data as a sorted by id boxed slice
Fields§
§path: PathBuf
§items: Box<[T]>
Implementations§
Source§impl<T> CsvPartialCache<T>where
T: FromLineOffset,
impl<T> CsvPartialCache<T>where
T: FromLineOffset,
Source§impl<T> CsvPartialCache<T>
impl<T> CsvPartialCache<T>
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for CsvPartialCache<T>
impl<T> RefUnwindSafe for CsvPartialCache<T>where
T: RefUnwindSafe,
impl<T> Send for CsvPartialCache<T>where
T: Send,
impl<T> Sync for CsvPartialCache<T>where
T: Sync,
impl<T> Unpin for CsvPartialCache<T>
impl<T> UnwindSafe for CsvPartialCache<T>where
T: UnwindSafe,
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