pub enum BatchType {
Logged,
Unlogged,
Counter,
}Expand description
Batch type
Variants§
Logged
The batch will be “logged”. This is equivalent to a normal CQL3 batch statement.
Unlogged
The batch will be “unlogged”.
Counter
The batch will be a “counter” batch (and non-counter statements will be rejected).
Trait Implementations§
Source§impl FromSingleByte for BatchType
impl FromSingleByte for BatchType
impl StructuralPartialEq for BatchType
Auto Trait Implementations§
impl Freeze for BatchType
impl RefUnwindSafe for BatchType
impl Send for BatchType
impl Sync for BatchType
impl Unpin for BatchType
impl UnwindSafe for BatchType
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