summaryrefslogtreecommitdiff
path: root/src/codegen/error.rs
diff options
context:
space:
mode:
authorChristian Poveda <christian.poveda@ferrous-systems.com>2022-09-23 21:36:14 -0500
committerChristian Poveda <christian.poveda@ferrous-systems.com>2022-10-04 20:47:17 -0500
commit0296f9e86c7756e718b6b82836ce1e09b5f8d08a (patch)
treeb5954c6680b243c0b1671a80ea973ef90877e462 /src/codegen/error.rs
parenta900f8f863d1313ad76603234aaeea22bb9ba7b3 (diff)
split the repo into a workspace
remove `clap` dependency :tada: update the book installation instructions
Diffstat (limited to 'src/codegen/error.rs')
-rw-r--r--src/codegen/error.rs33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/codegen/error.rs b/src/codegen/error.rs
deleted file mode 100644
index c1bcf4e1..00000000
--- a/src/codegen/error.rs
+++ /dev/null
@@ -1,33 +0,0 @@
-use std::error;
-use std::fmt;
-
-/// Errors that can occur during code generation.
-#[derive(Clone, Debug, PartialEq, Eq)]
-pub enum Error {
- /// Tried to generate an opaque blob for a type that did not have a layout.
- NoLayoutForOpaqueBlob,
-
- /// Tried to instantiate an opaque template definition, or a template
- /// definition that is too difficult for us to understand (like a partial
- /// template specialization).
- InstantiationOfOpaqueType,
-}
-
-impl fmt::Display for Error {
- fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
- f.write_str(match *self {
- Error::NoLayoutForOpaqueBlob => {
- "Tried to generate an opaque blob, but had no layout"
- }
- Error::InstantiationOfOpaqueType => {
- "Instantiation of opaque template type or partial template \
- specialization"
- }
- })
- }
-}
-
-impl error::Error for Error {}
-
-/// A `Result` of `T` or an error of `bindgen::codegen::error::Error`.
-pub type Result<T> = ::std::result::Result<T, Error>;