Current section

Files

Jump to
uboot_env lib uboot_env location.ex
Raw

lib/uboot_env/location.ex

defmodule UBootEnv.Location do
@moduledoc """
Environment block location
"""
defstruct [:path, :offset, :size]
@type t() :: %__MODULE__{
path: Path.t(),
offset: non_neg_integer(),
size: pos_integer()
}
end