Success

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

Attributes

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

Members list

Value members

Inherited methods

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
Result
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

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

Attributes

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

Attributes

Inherited from:
Result