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/interface_implementation.ex
defmodule BinStruct.Macro.Structs.InterfaceImplementation do
@moduledoc false
alias BinStruct.Macro.Structs.InterfaceImplementation
alias BinStruct.Macro.Structs.Callback
@type t :: %InterfaceImplementation{
interface: atom(),
callback: Callback.t()
}
defstruct [
:interface,
:callback
]
end