Current section

Files

Jump to
bin_struct lib bin_struct macro structs interface_implementation.ex
Raw

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