HExit

object HExit
trait Sum
trait Mirror
class Object
trait Matchable
class Any
HExit.type

Type members

Classlikes

final case class Die(t: Throwable) extends HExit[Any, Nothing, Nothing]
final case class Effect[R, E, A](z: ZIO[R, Option[E], A]) extends HExit[R, E, A]
case object Empty extends HExit[Any, Nothing, Nothing]
final case class Failure[E](e: E) extends HExit[Any, E, Nothing]
final case class Success[A](a: A) extends HExit[Any, Nothing, A]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from:
Mirror

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def die(t: Throwable): HExit[Any, Nothing, Nothing]
def empty: HExit[Any, Nothing, Nothing]
def fail[E](e: E): HExit[Any, E, Nothing]
def fromZIO[R, E, A](z: ZIO[R, E, A]): HExit[R, E, A]
def succeed[A](a: A): HExit[Any, Nothing, A]
def unit: HExit[Any, Nothing, Unit]