Struct cassandra_cpp::FunctionMeta [] [src]

pub struct FunctionMeta(_);

The metadata for a function

Methods

impl FunctionMeta
[src]

Iterator over the fields in this function

Gets the name of the function.

Gets the full name of the function. The full name includes the function's name and the function's signature: "name(type1 type2.. typeN)".

Gets the body of the function.

Gets the language of the function.

Gets whether a function is called on "null".

Gets the number of arguments this function takes.

Gets the function's argument name and type for the provided index.

Gets the function's argument and type for the provided name.

Gets the return type of the function.

Gets a metadata field for the provided name. Metadata fields allow direct access to the column data found in the underlying "functions" metadata table.

Trait Implementations

impl Debug for FunctionMeta
[src]

Formats the value using the given formatter.