1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-21 11:30:30 -04:00
nix/nix-rust/src/error.rs

6 lines
106 B
Rust
Raw Normal View History

2019-09-10 15:55:32 -04:00
#[derive(Debug)]
pub enum Error {
Misc(String),
Foreign(libc::c_void), // == std::exception_ptr
}