pub trait BaseHttpClient: Send + Default + Clone + Debug {
    type Error;
    fn get(
        &self,
        url: &str,
        headers: Option<&Headers>,
        payload: &Query<'_>
    ) -> Result<String, Self::Error>;
fn post(
        &self,
        url: &str,
        headers: Option<&Headers>,
        payload: &Value
    ) -> Result<String, Self::Error>;
fn post_form<'a>(
        &self,
        url: &str,
        headers: Option<&Headers>,
        payload: &Form<'a>
    ) -> Result<String, Self::Error>;
fn put(
        &self,
        url: &str,
        headers: Option<&Headers>,
        payload: &Value
    ) -> Result<String, Self::Error>;
fn delete(
        &self,
        url: &str,
        headers: Option<&Headers>,
        payload: &Value
    ) -> Result<String, Self::Error>; }
Expand description

This trait represents the interface to be implemented for an HTTP client, which is kept separate from the Spotify client for cleaner code. Thus, it also requires other basic traits that are needed for the Spotify client.

When a request doesn’t need to pass parameters, the empty or default value of the payload type should be passed, like json!({}) or Query::new(). This avoids using Option<T> because Value itself may be null in other different ways (Value::Null, an empty Value::Object…), so this removes redundancy and edge cases (a `Some(Value::Null), for example, doesn’t make much sense).

Associated Types

Required methods

Implementors