We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9b8286 commit 3e5d02dCopy full SHA for 3e5d02d
src/error.rs
@@ -48,8 +48,6 @@ pub enum ErrorKind {
48
Unsupported,
49
/// overflow when computing offset, length, etc.
50
Overflow,
51
- #[doc(hidden)]
52
- __Incomplete,
53
}
54
55
#[inline(always)]
@@ -82,7 +80,6 @@ impl fmt::Display for ShapeError {
82
80
ErrorKind::OutOfBounds => "out of bounds indexing",
83
81
ErrorKind::Unsupported => "unsupported operation",
84
ErrorKind::Overflow => "arithmetic overflow",
85
- ErrorKind::__Incomplete => "this error variant is not in use",
86
};
87
write!(f, "ShapeError/{:?}: {}", self.kind(), description)
88
0 commit comments