ParseResult

oxygen.ui.web.PageCodec.ParseResult
See theParseResult companion trait
object ParseResult

Attributes

Companion
trait
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Self type

Members list

Type members

Classlikes

final case class Error(error: RequestDecodingFailure) extends NonSuccess

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait NonSuccess
trait ParseResult[Nothing]
class Object
trait Matchable
class Any
Show all
case object InvalidPath extends NonSuccess

Attributes

Supertypes
trait Singleton
trait Product
trait Mirror
trait Serializable
trait Product
trait Equals
trait NonSuccess
trait ParseResult[Nothing]
class Object
trait Matchable
class Any
Show all
Self type
sealed trait NonSuccess extends ParseResult[Nothing]

Attributes

Supertypes
trait ParseResult[Nothing]
class Object
trait Matchable
class Any
Known subtypes
class Error
object InvalidPath
final case class Success[+A](value: A) extends ParseResult[A]

Attributes

Supertypes
trait Serializable
trait Product
trait Equals
trait ParseResult[A]
class Object
trait Matchable
class Any
Show all

Inherited and Abstract types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def fromEither[A](value: Either[RequestDecodingFailure, A]): ParseResult[A]
def fromOption[A](value: Option[A]): ParseResult[A]