Type Alias SideEffect
pub type SideEffect = ();Expand description
Type corresponding to a step which performs a side-effect, without returning a specific value.
e.g: A step responsible for installing a package from apt might claim a
WriteVar<SideEffect>, with any step requiring the package to have been
installed prior being able to claim the corresponding ReadVar<SideEffect>.