Result

object Result
Companion
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case
class Error[F[_], A](value: Response[F]) extends Result[F, A]
case
class Failure[F[_], A](value: Response[F]) extends Result[F, A]
case
class Success[F[_], A](value: A) extends Result[F, A]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def error[F[_], A](a: Response[F]): Result[F, A]
def failure[F[_], A](a: Response[F]): Result[F, A]
def success[F[_], A](a: A): Result[F, A]

Implicits

Implicits

implicit
def monad[F[_]]: Monad[[_] =>> Result[F, _$8]]
implicit
def traverse[F[_]]: Traverse[[_] =>> Result[F, _$11]]