pub struct BatchCreateRowsBuilder { /* private fields */ }
Implementations§
Source§impl BatchCreateRowsBuilder
impl BatchCreateRowsBuilder
pub fn new() -> Self
Sourcepub fn put_container(self, container: String) -> Self
pub fn put_container(self, container: String) -> Self
Set the container to the BatchCreateRow
structure being built.
pub fn set_columns(self, columns: Vec<String>) -> Self
pub fn insert_value(self, value: Vec<AlbaTypes>) -> Self
Sourcepub fn finish(self) -> Result<CompiledAlba, Error>
pub fn finish(self) -> Result<CompiledAlba, Error>
Finish the builder, returning the compiled BatchCreateRow
bytes in the CompiledAlba
type.
Sourcepub fn cloned_finish(&self) -> Result<CompiledAlba, Error>
pub fn cloned_finish(&self) -> Result<CompiledAlba, Error>
Finish the builder, returning the compiled BatchCreateRow
bytes in the CompiledAlba
type.
The difference between this method and the finish
is that by using this one you can compile multiple times to recicle the builder.
Trait Implementations§
Source§impl Clone for BatchCreateRowsBuilder
impl Clone for BatchCreateRowsBuilder
Source§fn clone(&self) -> BatchCreateRowsBuilder
fn clone(&self) -> BatchCreateRowsBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BatchCreateRowsBuilder
impl Debug for BatchCreateRowsBuilder
Source§impl Default for BatchCreateRowsBuilder
impl Default for BatchCreateRowsBuilder
Source§fn default() -> BatchCreateRowsBuilder
fn default() -> BatchCreateRowsBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BatchCreateRowsBuilder
impl RefUnwindSafe for BatchCreateRowsBuilder
impl Send for BatchCreateRowsBuilder
impl Sync for BatchCreateRowsBuilder
impl Unpin for BatchCreateRowsBuilder
impl UnwindSafe for BatchCreateRowsBuilder
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