pub struct RayonFiles<File> { /* private fields */ }Expand description
Wrapper data structure for multiple files to be used with [rayon] thread pool, where the same
file is opened multiple times, once for each thread for faster concurrent reads
Implementations§
Source§impl RayonFiles<File>
impl RayonFiles<File>
Trait Implementations§
Source§impl<File: Debug> Debug for RayonFiles<File>
impl<File: Debug> Debug for RayonFiles<File>
Source§impl<File> ReadAtSync for &RayonFiles<File>where
File: ReadAtSync,
impl<File> ReadAtSync for &RayonFiles<File>where
File: ReadAtSync,
Source§impl<File> ReadAtSync for RayonFiles<File>where
File: ReadAtSync,
impl<File> ReadAtSync for RayonFiles<File>where
File: ReadAtSync,
Auto Trait Implementations§
impl<File> Freeze for RayonFiles<File>
impl<File> RefUnwindSafe for RayonFiles<File>where
File: RefUnwindSafe,
impl<File> Send for RayonFiles<File>where
File: Send,
impl<File> Sync for RayonFiles<File>where
File: Sync,
impl<File> Unpin for RayonFiles<File>where
File: Unpin,
impl<File> UnwindSafe for RayonFiles<File>where
File: 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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more