uint64_be

64 bit big endian unsigned integer


iex> defmodule Struct do
...>   use BinStruct
...>   field :value, :uint64_be
...> end
...>
...> Struct.new(value: 1)
...> |> Struct.dump_binary()
...> |> Struct.parse()
...> |> then(fn {:ok, struct, _rest } -> struct end)
...> |> Struct.decode()
%{ value: 1 }