[][src]Struct discord_cassandra_cpp::Set

pub struct Set(_);

A Cassandra set

Trait Implementations

impl BindRustType<Set> for Statement[src]

impl CassCollection for Set[src]

type Value = _CassCollection

The type of value held by this collection

fn new(item_count: usize) -> Self[src]

create a new list

fn data_type(&self) -> ConstDataType[src]

Gets the data type of a collection.

fn append_int8(&mut self, value: i8) -> Result<&mut Self>[src]

Appends a "tinyint" to the collection.

fn append_int16(&mut self, value: i16) -> Result<&mut Self>[src]

Appends an "smallint" to the collection.

fn append_int32(&mut self, value: i32) -> Result<&mut Self>[src]

Appends an "int" to the collection.

fn append_uint32(&mut self, value: u32) -> Result<&mut Self>[src]

Appends a "date" to the collection.

fn append_int64(&mut self, value: i64) -> Result<&mut Self>[src]

Appends a "bigint", "counter", "timestamp" or "time" to the collection.

fn append_float(&mut self, value: f32) -> Result<&mut Self>[src]

Appends a "float" to the collection.

fn append_double(&mut self, value: f64) -> Result<&mut Self>[src]

Appends a "double" to the collection.

fn append_bool(&mut self, value: bool) -> Result<&mut Self>[src]

Appends a "boolean" to the collection.

fn append_string(&mut self, value: &str) -> Result<&mut Self>[src]

Appends an "ascii", "text" or "varchar" to the collection.

fn append_bytes(&mut self, value: Vec<u8>) -> Result<&mut Self>[src]

Appends a "blob", "varint" or "custom" to the collection.

fn append_uuid(&mut self, value: Uuid) -> Result<&mut Self>[src]

Appends a "uuid" or "timeuuid" to the collection.

fn append_inet(&mut self, value: Inet) -> Result<&mut Self>[src]

Appends an "inet" to the collection.

fn append_list(&mut self, value: List) -> Result<&mut Self>[src]

Appends a "list" to the collection.

fn append_set(&mut self, value: Set) -> Result<&mut Self>[src]

Appends a "set" to the collection.

fn append_map(&mut self, value: Map) -> Result<&mut Self>[src]

Appends a "map" to the collection.

fn append_tuple(&mut self, value: Tuple) -> Result<&mut Self>[src]

Appends a "tuple" to the collection.

fn append_user_type(&mut self, value: &UserType) -> Result<&mut Self>[src]

Appends a "udt" to the collection.

impl Debug for Set[src]

impl Drop for Set[src]

impl Send for Set[src]

Auto Trait Implementations

impl RefUnwindSafe for Set

impl !Sync for Set

impl Unpin for Set

impl UnwindSafe for Set

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.