Struct cassandra_cpp::List [] [src]

pub struct List(_);

A cassandra list collection

Trait Implementations

impl Debug for List
[src]

[src]

Formats the value using the given formatter. Read more

impl Send for List
[src]

impl Drop for List
[src]

[src]

Executes the destructor for this type. Read more

impl CassCollection for List
[src]

The type of value held by this collection

[src]

create a new list

[src]

Creates a new collection from an existing data type.

[src]

Gets the data type of a collection.

[src]

Appends a "tinyint" to the collection.

[src]

Appends an "smallint" to the collection.

[src]

Appends an "int" to the collection.

[src]

Appends a "date" to the collection.

[src]

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

[src]

Appends a "float" to the collection.

[src]

Appends a "double" to the collection.

[src]

Appends a "boolean" to the collection.

[src]

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

[src]

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

[src]

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

[src]

Appends an "inet" to the collection.

[src]

Appends a "list" to the collection.

[src]

Appends a "set" to the collection.

[src]

Appends a "map" to the collection.

[src]

Appends a "tuple" to the collection.

[src]

Appends a "udt" to the collection.

Auto Trait Implementations

impl !Sync for List