Current section

Files

Jump to
bin_struct lib bin_struct macro parse structs parse_checkpoint.ex
Raw

lib/bin_struct/macro/parse/structs/parse_checkpoint.ex

defmodule BinStruct.Macro.Parse.Structs.ParseCheckpoint do
@moduledoc false
alias BinStruct.Macro.Parse.Structs.ParseCheckpoint
alias BinStruct.Macro.Structs.Field
@type t :: %ParseCheckpoint {
fields: list(
Field.t()
)
}
defstruct [
:fields
]
end