apisdk 0.0.1

A highlevel API client framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod execute;
mod extract;
mod form;
mod macros;

pub use extract::*;
pub use form::*;
pub use macros::*;

/// Internal struct & functions
#[doc(hidden)]
pub mod internal {
    pub use super::execute::RequestConfigurator;
    pub use super::execute::_send;
    pub use super::execute::_send_form;
    pub use super::execute::_send_json;
    pub use super::execute::_send_multipart;
}