Modules§
Structs§
- Backend
Service - Service that receives
BackendRequest
values, calls aBackend
and responds withBackendResponse
. - Core
Service - Service that receives
CoreRequest
values, calls aCore
and responds withCoreResponse
.
Enums§
- Backend
Request - Enum containing all types of backend requests.
- Backend
Response - Enum containing all types of backend responses.
- Core
Request - Enum containing all types of core requests.
- Core
Response - Enum containing all types of core responses.
Type Aliases§
- Boxed
Service - A boxed dynamic type for multilink services. The service must return
a result with a
ServiceResponse
orServiceError
. - Service
Error - A boxed error type that may be returned by service calls.
- Service
Future - A future that returns a result with a generic response and
ServiceError
. This is returned by service calls.