Packages

ReflectOS Kernel is the foundation of the ReflectOS ecosystem, and provides the base set of modules needed to extend your ReflectOS system.

Current section

Files

Jump to
reflect_os_kernel lib layout_manager state.ex
Raw

lib/layout_manager/state.ex

defmodule ReflectOS.Kernel.LayoutManager.State do
@moduledoc """
Holds the struct which is used as the `ReflectOS.Kernel.LayoutManager` state.
"""
@type t :: %__MODULE__{
layout_id: struct(),
assigns: map()
}
defstruct layout_id: nil,
assigns: %{}
end