FormResult

oxygen.ui.web.FormResult
See theFormResult companion object
sealed trait FormResult[+Value]

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class Error
class Success[Value]

Members list

Value members

Concrete methods

final def flatMap[Value2](f: Value => FormResult[Value2]): FormResult[Value2]
final def flatMapEitherError[Value2](fields: List[String])(f: Value => EitherError[Value2]): FormResult[Value2]
final def flatMapEitherMessage[Value2](fields: List[String])(f: Value => EitherMessage[Value2]): FormResult[Value2]
final def flatMapEitherMessages[Value2](fields: List[String])(f: Value => EitherMessages[Value2]): FormResult[Value2]
final def flatMapEitherResult[Value2](f: Value => EitherResult[Value2]): FormResult[Value2]
final def map[Value2](f: Value => Value2): FormResult[Value2]
final def toEither: EitherResult[Value]
final def toOption: Option[Value]
final def zipWith[Value2, Out](that: FormResult[Value2])(f: (Value, Value2) => Out): FormResult[Out]