#[repr(u32)]pub enum CassWriteType {
CASS_WRITE_TYPE_UNKNOWN = 0,
CASS_WRITE_TYPE_SIMPLE = 1,
CASS_WRITE_TYPE_BATCH = 2,
CASS_WRITE_TYPE_UNLOGGED_BATCH = 3,
CASS_WRITE_TYPE_COUNTER = 4,
CASS_WRITE_TYPE_BATCH_LOG = 5,
CASS_WRITE_TYPE_CAS = 6,
CASS_WRITE_TYPE_VIEW = 7,
CASS_WRITE_TYPE_CDC = 8,
}
Variants§
CASS_WRITE_TYPE_UNKNOWN = 0
CASS_WRITE_TYPE_SIMPLE = 1
CASS_WRITE_TYPE_BATCH = 2
CASS_WRITE_TYPE_UNLOGGED_BATCH = 3
CASS_WRITE_TYPE_COUNTER = 4
CASS_WRITE_TYPE_BATCH_LOG = 5
CASS_WRITE_TYPE_CAS = 6
CASS_WRITE_TYPE_VIEW = 7
CASS_WRITE_TYPE_CDC = 8
Trait Implementations§
Source§impl Clone for CassWriteType_
impl Clone for CassWriteType_
Source§fn clone(&self) -> CassWriteType_
fn clone(&self) -> CassWriteType_
Returns a copy 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 CassWriteType_
impl Debug for CassWriteType_
Source§impl Hash for CassWriteType_
impl Hash for CassWriteType_
Source§impl PartialEq for CassWriteType_
impl PartialEq for CassWriteType_
impl Copy for CassWriteType_
impl Eq for CassWriteType_
impl StructuralPartialEq for CassWriteType_
Auto Trait Implementations§
impl Freeze for CassWriteType_
impl RefUnwindSafe for CassWriteType_
impl Send for CassWriteType_
impl Sync for CassWriteType_
impl Unpin for CassWriteType_
impl UnwindSafe for CassWriteType_
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