pub trait Endpoint { type Response: DeserializeOwned; // Required method fn request(&self, client: &Client) -> Request; }