Raise

object Raise
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any
Raise.type

Type members

Classlikes

final case class Action[A](action: A) extends Raise[A, Nothing]
final case class DisplayMessage(message: PageMessage) extends Standard
object History
Companion:
class
sealed trait History extends Standard
Companion:
object
final case class ModifyState[S](modify: S => S, reRender: Boolean) extends StandardOrUpdate[S]
sealed trait Standard extends StandardOrUpdate[Nothing]
sealed trait StandardOrUpdate[+S] extends Raise[Nothing, S]

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

Value members

Concrete methods

inline def setState[S](f: => S): ModifyState[S]
inline def setStateNoReRender[S](f: => S): ModifyState[S]
inline def updateState[S](f: S => S): ModifyState[S]
inline def updateStateNoReRender[S](f: S => S): ModifyState[S]