| 10 | |
| 11 | #[derive(Debug)] |
| 12 | pub enum CppBootstrapperErrorKind { |
| 13 | Io(io::Error), |
| 14 | Pak(PakError), |
| 15 | Metadata(unreal_mod_metadata::error::Error), |
| 16 | } |
| 17 | |
| 18 | impl Display for CppBootstrapperError { |
| 19 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected