pub type ASCOMResultFuture<'async_trait, T> = BoxFuture<'async_trait, ASCOMResult<T>>;
Expand description
A helper alias for the common type of futures returned by device traits.
You normally don’t need to use it as long as you use #[async_trait]
- it’s mostly here for documentation purposes.
Aliased Type§
pub struct ASCOMResultFuture<'async_trait, T> { /* private fields */ }