Skip to main content

Module value

Module value 

Source
Expand description

Runtime values.

Structs§

ActorCell
Internal state of a conc.Actor. Protected by a Mutex so that concurrent callers serialise on message delivery (the actor processes one message at a time). The handler closure is called on the calling VM’s thread — no extra OS thread required — which lets it invoke arbitrary effects (sql, net, …) through the same handler chain.

Enums§

MapKey
Hashable, ordered key for Value::Map / Value::Set. v1 supports Str and Int; extending to other primitives or to records is forward-compatible since the type is not exposed to user code beyond the surface API.
Value