mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-15 01:12:56 +00:00
6 lines
101 B
Rust
6 lines
101 B
Rust
use http::StatusCode;
|
|
|
|
pub trait HttpCodeError {
|
|
fn get_http_status_code(&self) -> StatusCode;
|
|
}
|