Create a timeout error.
(seconds: u64)
| 234 | |
| 235 | /// Create a timeout error. |
| 236 | pub fn timeout(seconds: u64) -> Self { |
| 237 | Self::Timeout { seconds } |
| 238 | } |
| 239 | |
| 240 | /// Create an empty view error. |
| 241 | pub fn empty_view(view: impl Into<String>) -> Self { |
no outgoing calls
no test coverage detected