ZManagedConstructor

sealed trait ZManagedConstructor[Input]

A ZManagedConstructor[Input] knows how to construct a ZManaged value from an input of type Input. This allows the type of the ZManaged value constructed to depend on Input.

Companion:
object
class Object
trait Matchable
class Any

Type members

Types

type Out

The type of the ZManaged value.

The type of the ZManaged value.

Value members

Abstract methods

def make(input: => Input)(implicit trace: Trace): Out

Constructs a ZManaged value from the specified input.

Constructs a ZManaged value from the specified input.