apisdk 0.0.16

An easy-to-use API toolkit for writing HTTP API Clients for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod execute;
mod form;
mod macros;

pub use form::*;
// pub use macros::*;

/// Internal struct & functions
#[doc(hidden)]
pub mod __internal {
    pub use super::execute::send;
    pub use super::execute::send_form;
    pub use super::execute::send_json;
    pub use super::execute::send_multipart;
    pub use super::execute::send_raw;
    pub use super::execute::send_xml;
    pub use super::execute::RequestConfigurator;
}