pub struct MatrixRowBatch<'a> {
pub type_name: String,
pub schema: Vec<String>,
pub rows: Vec<(usize, &'a str)>,
pub has_ditto: bool,
}Expand description
Batch of matrix rows for parallel parsing.
Contains all information needed to parse rows independently.
Fields§
§type_name: StringType name for this matrix list
schema: Vec<String>Schema columns
rows: Vec<(usize, &'a str)>Row data: (line_number, row_content)
has_ditto: boolWhether ditto markers were found (requires sequential fallback)
Implementations§
Source§impl<'a> MatrixRowBatch<'a>
impl<'a> MatrixRowBatch<'a>
Sourcepub fn can_parallelize(&self) -> bool
pub fn can_parallelize(&self) -> bool
Check if this batch is safe for parallel parsing.
Returns false if ditto markers are present (requires sequential).
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for MatrixRowBatch<'a>
impl<'a> RefUnwindSafe for MatrixRowBatch<'a>
impl<'a> Send for MatrixRowBatch<'a>
impl<'a> Sync for MatrixRowBatch<'a>
impl<'a> Unpin for MatrixRowBatch<'a>
impl<'a> UnwindSafe for MatrixRowBatch<'a>
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
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