marketstack/api/endpoint_prelude.rs
1//! Endpoint prelude
2//!
3//! This module re-exports all of the types needed for endpoints to implement the
4//! [`Endpoint`](../trait.Endpoint.html) trait.
5
6pub use std::borrow::Cow;
7
8pub use http::Method;
9
10pub use crate::api::paged::PageLimit;
11pub use crate::api::BodyError;
12pub use crate::api::Client;
13pub use crate::api::Endpoint;
14pub use crate::api::FormParams;
15pub use crate::api::QueryParams;