(
&self,
_api_notifier: EventFd,
_api_sender: Sender<ApiRequest>,
_body: &Option<Body>,
_files: Vec<File>,
)
| 145 | } |
| 146 | |
| 147 | fn put_handler( |
| 148 | &self, |
| 149 | _api_notifier: EventFd, |
| 150 | _api_sender: Sender<ApiRequest>, |
| 151 | _body: &Option<Body>, |
| 152 | _files: Vec<File>, |
| 153 | ) -> std::result::Result<Option<Body>, HttpError> { |
| 154 | Err(HttpError::BadRequest) |
| 155 | } |
| 156 | |
| 157 | fn get_handler( |
| 158 | &self, |
no outgoing calls
no test coverage detected