Trait scoopit_api::requests::GetRequest
source · pub trait GetRequest: Serialize + Debug {
type Response: TryInto<Self::Output, Error = Error> + DeserializeOwned;
type Output;
fn endpoint(&self) -> Cow<'static, str>;
}Expand description
Represents a GET request.