gazelle_api 0.18.0

Gazelle API Client
Documentation
pub use crate::client::*;
pub use crate::client_trait::*;
pub use crate::error::*;
pub use crate::factory::*;
#[cfg(feature = "mock")]
pub use crate::mock::*;
pub use crate::options::*;
pub use crate::rate::*;
pub use crate::rate_limiter::*;
pub use crate::schema::*;
#[cfg(test)]
pub(crate) use crate::tests::*;

pub(crate) use async_trait::async_trait;
pub(crate) use log::trace;
pub(crate) use reqwest::Error as ReqwestError;
pub(crate) use serde::de::DeserializeOwned;
pub(crate) use serde::de::{Deserializer, Error as DeError, Unexpected, Visitor};
pub(crate) use serde::{Deserialize, Serialize, Serializer};
pub(crate) use serde_json::Error as JsonError;
pub(crate) use serde_json::Value as JsonValue;
pub(crate) use serde_json::from_str as json_from_str;
#[cfg(test)]
pub(crate) use serde_json::to_string as json_to_string;
#[cfg(test)]
pub(crate) use serde_yaml::Error as YamlError;
#[cfg(test)]
pub(crate) use serde_yaml::from_str as yaml_from_str;
#[cfg(test)]
pub(crate) use serde_yaml::to_string as yaml_to_string;
#[cfg(test)]
pub(crate) use std::collections::HashMap;
pub(crate) use std::convert::Infallible;
pub(crate) use std::fmt::{Display, Formatter, Result as FmtResult};
pub(crate) use std::io::Error as IoError;
pub(crate) use std::path::PathBuf;
pub(crate) use std::str::FromStr;
#[cfg(test)]
pub(crate) use std::sync::Arc;
pub(crate) use std::time::SystemTime;