View Source Xandra.Void (Xandra v0.17.0)
A struct that represents an empty Cassandra result.
This struct is returned as the result of queries such as INSERT, UPDATE, or
DELETE. See %Xandra.Void{} for information about the fields.
Link to this section Summary
Functions
The struct for "void" results.
Link to this section Types
@type t() :: %Xandra.Void{ custom_payload: Xandra.custom_payload() | nil, tracing_id: binary() | nil }
The type for a "void" result.
Link to this section Functions
The struct for "void" results.
These are the public fields it contains:
:tracing_id- the tracing ID (as a UUID binary) if tracing was enabled, ornilif no tracing was enabled. See the "Tracing" section inXandra.execute/4.:custom_payload- the custom payload sent by the server, if present. If the server doesn't send a custom payload, this field isnil. Otherwise, it's of typeXandra.custom_payload/0. See the "Custom payloads" section in the documentation for theXandramodule.