This are Custom `Enums` for memorable and uniform response codes.
Enums are *cheaper* to *compare* and *harder* to get *wrong* than strings thereby guaranteeing efficiency.
```rust
use custom_codes::FileOps;
fn create_file(file_name: &str) -> FileOps {
}
fn main() {
}
```