Modules§
- A collection of
serde::Serialize/serde::Deserializestructs which capture the application state, suitable for persistence, history, etc. features. - Utility functions that are common to the Perspective crates.
Structs§
- An instance of a
Clientis a unique connection to a singleperspective_server::Server, whether locally in-memory or remote over some transport like a WebSocket. - Metadata about the engine runtime (such as total heap utilization).
- Options which impact the behavior of
Client::table, as well as subsequent calls toTable::update. - The
Viewstruct is Perspective’s query and serialization interface. It represents a query on theTable’s dataset and is always created from an existingTableinstance via theTable::viewmethod.
Enums§
- View types
- TODO This belongs in features
- The possible formats of input data which
Client::tablemay take as an argument. - The possible formats of input data which
Table::updatemay take as an argument.
Traits§
- The server-side representation of a connection to a
Client.
Type Aliases§
- Metadata about what features are supported by the
ServerthisClientis connected to.