Available on crate features
sync_routes
and dbx_async
only.Structs§
- PollArg
- Arguments for methods that poll the status of an asynchronous job.
Enums§
- Launch
Empty Result - Result returned by methods that may either launch an asynchronous job or complete synchronously. Upon synchronous completion of the job, no additional information is returned.
- Launch
Result Base - Result returned by methods that launch an asynchronous job. A method who may either launch an
asynchronous job, or complete the request synchronously, can use this union by extending it, and
adding a ‘complete’ field with the type of the synchronous response. See
LaunchEmptyResult
for an example. - Poll
Empty Result - Result returned by methods that poll for the status of an asynchronous job. Upon completion of the job, no additional information is returned.
- Poll
Error - Error returned by methods for polling the status of asynchronous job.
- Poll
Result Base - Result returned by methods that poll for the status of an asynchronous job. Unions that extend
this union should add a ‘complete’ field with a type of the information returned upon job
completion. See
PollEmptyResult
for an example.