igd_next/aio/
mod.rs

1//! This module implements the same features as the main crate, but using async io.
2
3mod gateway;
4
5#[cfg(feature = "aio_tokio")]
6pub mod tokio;
7
8#[cfg(feature = "aio_async_std")]
9pub mod async_std;
10
11use async_trait::async_trait;
12
13use crate::RequestError;
14
15pub use self::gateway::Gateway;
16
17pub(crate) const MAX_RESPONSE_SIZE: usize = 1500;
18pub(crate) const HEADER_NAME: &str = "SOAPAction";
19
20/// Trait to allow abstracting over `tokio` and `async-std`.
21#[async_trait]
22pub trait Provider {
23    /// Send an async request over the executor.
24    async fn send_async(url: &str, action: &str, body: &str) -> Result<String, RequestError>;
25}