ExDatalog.UnsupportedFeature (ExDatalog v0.4.0)

Copy Markdown View Source

Returned when a DSL feature is recognized but not yet implemented.

The feature field names the unsupported feature. The planned_for field indicates the target release.

Examples

iex> uf = %ExDatalog.UnsupportedFeature{feature: :aggregates, planned_for: "v0.6.0"}
iex> uf.feature
:aggregates
iex> uf.planned_for
"v0.6.0"

Summary

Types

t()

@type t() :: %ExDatalog.UnsupportedFeature{feature: atom(), planned_for: String.t()}