Struct Batch

Source
pub struct Batch(/* private fields */);
Expand description

A group of statements that are executed as a single batch. Note: Batches are not supported by the binary protocol version 1.

Implementations§

Source§

impl Batch

Source

pub fn session(&self) -> &Session

Returns the session of which this batch is bound to.

Source

pub async fn execute(self) -> Result<CassResult>

Executes this batch.

Source

pub fn set_consistency(&mut self, consistency: Consistency) -> Result<&mut Self>

Sets the batch’s consistency level

Source

pub fn set_serial_consistency( &mut self, consistency: Consistency, ) -> Result<&mut Self>

Sets the batch’s serial consistency level.

Default: Not set

Source

pub fn set_timestamp(&mut self, timestamp: i64) -> Result<&Self>

Sets the batch’s timestamp.

Source

pub fn set_retry_policy( &mut self, retry_policy: RetryPolicy, ) -> Result<&mut Self>

Sets the batch’s retry policy.

Source

pub fn set_custom_payload( &mut self, custom_payload: CustomPayload, ) -> Result<&mut Self>

Sets the batch’s custom payload.

Source

pub fn add_statement(&mut self, statement: Statement) -> Result<&Self>

Adds a statement to a batch.

Trait Implementations§

Source§

impl Debug for Batch

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Batch

§

impl RefUnwindSafe for Batch

§

impl Send for Batch

§

impl Sync for Batch

§

impl Unpin for Batch

§

impl UnwindSafe for Batch

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> SendSyncUnwindSafe for T
where T: Send + Sync + UnwindSafe + ?Sized,