-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquery.rs
30 lines (26 loc) · 803 Bytes
/
query.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use async_trait::async_trait;
use http::Uri;
use url::Url;
use crate::api::{ApiError, AsyncClient, Client};
pub fn url_to_http_uri(url: Url) -> Uri {
url.as_str()
.parse::<Uri>()
.expect("failed to parse a url::Url as an http::Uri")
}
/// A trait which represents a query which may be made to a Marketstack client.
pub trait Query<T, C>
where
C: Client,
{
/// Perform the query against the client.
fn query(&self, client: &C) -> Result<T, ApiError<C::Error>>;
}
/// A trait which represents an asynchronous query which may be made to a Marketstack client.
#[async_trait]
pub trait AsyncQuery<T, C>
where
C: AsyncClient,
{
/// Perform the query asynchronously against the client.
async fn query_async(&self, client: &C) -> Result<T, ApiError<C::Error>>;
}