ParseResult

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

Type members

Classlikes

case object EarlyExit extends ParseResult

Parsing signalled an early exit. This means that there wasn't an error, but that not all arguments were parsed. This occurs if one of the arguments requested an early exit after some side-effect (for example, --help will print a help message and then signal an early exit). Arguments are not available.

Parsing signalled an early exit. This means that there wasn't an error, but that not all arguments were parsed. This occurs if one of the arguments requested an early exit after some side-effect (for example, --help will print a help message and then signal an early exit). Arguments are not available.

case object Error extends ParseResult

There was an error during parsing. Arguments are not available.

There was an error during parsing. Arguments are not available.

case object Success extends ParseResult

Parsing succeeded. Arguments are available.

Parsing succeeded. Arguments are available.

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