Success

oxygen.ui.web.FormResult.Success
final case class Success[+Value](value: Value) extends FormResult[Value]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait FormResult[Value]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

final def flatMap[Value2](f: Value => FormResult[Value2]): FormResult[Value2]

Attributes

Inherited from:
FormResult
final def flatMapEitherError[Value2](fields: List[String])(f: Value => EitherError[Value2]): FormResult[Value2]

Attributes

Inherited from:
FormResult
final def flatMapEitherMessage[Value2](fields: List[String])(f: Value => EitherMessage[Value2]): FormResult[Value2]

Attributes

Inherited from:
FormResult
final def flatMapEitherMessages[Value2](fields: List[String])(f: Value => EitherMessages[Value2]): FormResult[Value2]

Attributes

Inherited from:
FormResult
final def flatMapEitherResult[Value2](f: Value => EitherResult[Value2]): FormResult[Value2]

Attributes

Inherited from:
FormResult
final def map[Value2](f: Value => Value2): FormResult[Value2]

Attributes

Inherited from:
FormResult
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
final def toEither: EitherResult[Value]

Attributes

Inherited from:
FormResult
final def toOption: Option[Value]

Attributes

Inherited from:
FormResult
final def zipWith[Value2, Out](that: FormResult[Value2])(f: (Value, Value2) => Out): FormResult[Out]

Attributes

Inherited from:
FormResult