Trait githuber::api::ApiExt

source ·
pub trait ApiExt: Api {
    const METHOD: Method;

    fn payload_params(&self) -> Vec<(&'static str, String)>;
}
Expand description

Extended GitHub REST API.

Required Associated Constants

HTTP method.

Required Methods

Request’s payload parameters.

Can be one of:

  • Body parameters
  • Query parameters

Implementors