Trait graph_http::api_impl::ApiClientImpl
source · pub trait ApiClientImpl: ODataQuery + Sized {
// Required methods
fn url(&self) -> Url;
fn render_path<S: AsRef<str>>(
&self,
path: S,
path_params_map: &Value
) -> GraphResult<String>;
// Provided method
fn build_url<S: AsRef<str>>(
&self,
path: S,
path_params_map: &Value
) -> GraphResult<Url> { ... }
}