Current section
Files
Jump to
Current section
Files
lib/xberg/extraction_error_item.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:209a244862e56919f9675a72596b4bcd9283654720164e27cad36e49934090ab
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.ExtractionErrorItem do
@moduledoc "Non-fatal per-input extraction error captured by [`ExtractionResult`]."
@typedoc "Non-fatal per-input extraction error captured by [`ExtractionResult`]."
@type t :: %__MODULE__{
index: non_neg_integer(),
code: non_neg_integer(),
error_type: String.t() | nil,
source: String.t() | nil,
message: String.t() | nil
}
defstruct index: 0,
code: 0,
error_type: nil,
source: nil,
message: nil
end