Packages
BinStruct is a library which provides you rich set of tools for parsing/encoding binaries
Current section
Files
Jump to
Current section
Files
lib/bin_struct/macro/structs/registered_option.ex
defmodule BinStruct.Macro.Structs.RegisteredOption do
@moduledoc false
alias BinStruct.Macro.Structs.RegisteredOption
@type t :: %RegisteredOption{
name: atom(),
interface: atom(),
parameters: keyword()
}
defstruct [
:name,
:interface,
:parameters
]
end