Functions§
- content_
type 🔒 - process_
with_ empty_ response - Sends and processes a request expecting an empty response, returning
Ok(())when successful. - process_
with_ json_ response - Sends and processes a request expecting a JSON response, deserializing it into the type
T. - process_
with_ 🔒json_ response_ internal - process_with_json_response is generic, which means it gets monomorphized for every type it’s used with. This function contains the non-generic logic for processing the response so that it doesn’t get duplicated.