pub trait ReadMockResponse {
    fn read_response(dir_name: &str, file_name: &str) -> String;
}
Expand description

An interface for producing response body content

Required Methods

Return a response body string for a given directory and file name

Implementors