Failing

mill.api.ExecResult.Failing
@Scaladoc(value = "/**\n * A failed task execution.\n * @tparam T The result type of the computed task.\n */")
sealed trait Failing[+T] extends ExecResult[T]

A failed task execution.

Type parameters

T

The result type of the computed task.

Attributes

Source
ExecResult.scala
Graph
Supertypes
trait ExecResult[T]
class Object
trait Matchable
class Any
Known subtypes
class Exception
class Failure[T]

Members list

Value members

Abstract methods

def flatMap[V](f: T => ExecResult[V]): Failing[V]

Attributes

Source
ExecResult.scala
def map[V](f: T => V): Failing[V]

Attributes

Source
ExecResult.scala

Concrete methods

override def asFailing: Option[Failing[T]]

Attributes

Definition Classes
Source
ExecResult.scala
def throwException: Nothing

Attributes

Source
ExecResult.scala

Inherited methods

def asSuccess: Option[Success[T]]

Attributes

Inherited from:
ExecResult
Source
ExecResult.scala
def get: T

Attributes

Inherited from:
ExecResult
Source
ExecResult.scala