Struct cassandra_cpp::Tuple [] [src]

pub struct Tuple(_);

A tuple of values.

Methods

impl Tuple
[src]

Creates a new tuple.

Creates a new tuple from an existing data type.

Gets the data type of a tuple.

Sets an null in a tuple at the specified index.

Sets a "tinyint" in a tuple at the specified index.

Sets an "smallint" in a tuple at the specified index.

Sets an "int" in a tuple at the specified index.

Sets a "date" in a tuple at the specified index.

Sets a "bigint", "counter", "timestamp" or "time" in a tuple at the specified index.

Sets a "float" in a tuple at the specified index.

Sets a "double" in a tuple at the specified index.

Sets a "boolean" in a tuple at the specified index.

Sets an "ascii", "text" or "varchar" in a tuple at the specified index.

Sets a "blob", "varint" or "custom" in a tuple at the specified index.

Sets a "uuid" or "timeuuid" in a tuple at the specified index.

Sets an "inet" in a tuple at the specified index.

Sets a "list", "map" or "set" in a tuple at the specified index.

Sets a "tuple" in a tuple at the specified index.

Sets a "udt" in a tuple at the specified index.

Trait Implementations

impl Debug for Tuple
[src]

Formats the value using the given formatter.

impl Drop for Tuple
[src]

A method called when the value goes out of scope. Read more