pub type RawComponentMessage<M> = Either<M, MakeupMessage>;
Expand description

The exact message type that can be sent to a component. Either the component’s associated Message type, or a MakeupMessage.

Aliased Type§

enum RawComponentMessage<M> {
    Left(M),
    Right(MakeupMessage),
}

Variants§

§

Left(M)

A value of type L.

§

Right(MakeupMessage)

A value of type R.