Module tide_disco::app
source · Structs§
- A tide-disco server application.
- The health status of an application.
- Version information about an application.
- RAII guard to ensure a module is registered after it is configured.
Enums§
- An error encountered while building an App.
Traits§
- The Listener trait represents an implementation of http transport for a tide application. In order to provide a Listener to tide, you will also need to implement at least one
ToListener
that outputs your Listener type. - ToListener represents any type that can be converted into a
Listener
. Any type that implements ToListener can be passed toServer::listen
or added to aConcurrentListener