Xandra v0.13.0 Xandra.Prepared View Source
A data structure used to internally represent prepared queries.
These are the publicly accessible fields of this struct:
:tracing_id
- the tracing ID (as a UUID binary) if tracing was enabled, ornil
if no tracing was enabled. See the "Tracing" section inXandra.execute/4
.
All other fields are documented in t/0
to avoid Dialyzer warnings,
but are not meant to be used by users.
Link to this section Summary
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %Xandra.Prepared{
bound_columns: list() | nil,
default_consistency: atom() | nil,
id: binary() | nil,
protocol_module: module() | nil,
result_columns: list() | nil,
statement: Xandra.statement(),
tracing_id: binary() | nil,
values: Xandra.values() | nil
}
t() :: %Xandra.Prepared{ bound_columns: list() | nil, default_consistency: atom() | nil, id: binary() | nil, protocol_module: module() | nil, result_columns: list() | nil, statement: Xandra.statement(), tracing_id: binary() | nil, values: Xandra.values() | nil }