pub struct ArrowBulkUpdateBuilder<'e, R: EvaluationContext> { /* private fields */ }Expand description
Bulk Arrow update builder for Phase C. Chooses overlay vs rebuild per chunk.
Implementations§
Source§impl<'e, R: EvaluationContext> ArrowBulkUpdateBuilder<'e, R>
impl<'e, R: EvaluationContext> ArrowBulkUpdateBuilder<'e, R>
pub fn new(engine: &'e mut Engine<R>) -> Self
pub fn update_cell( &mut self, sheet: &str, row: u32, col: u32, value: LiteralValue, )
pub fn finish(self) -> Result<usize, ExcelError>
Auto Trait Implementations§
impl<'e, R> Freeze for ArrowBulkUpdateBuilder<'e, R>
impl<'e, R> !RefUnwindSafe for ArrowBulkUpdateBuilder<'e, R>
impl<'e, R> Send for ArrowBulkUpdateBuilder<'e, R>
impl<'e, R> Sync for ArrowBulkUpdateBuilder<'e, R>
impl<'e, R> Unpin for ArrowBulkUpdateBuilder<'e, R>
impl<'e, R> !UnwindSafe for ArrowBulkUpdateBuilder<'e, R>
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