We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d65a2f commit 7886ad7Copy full SHA for 7886ad7
1 file changed
src/spring_errno.rs
@@ -25,6 +25,7 @@ pub enum SpringErrno {
25
Unavailable = -9,
26
Sql = -10,
27
InvalidConfig = -11,
28
+ Null = -12,
29
30
/// Insufficient buffer size
31
CInsufficient = -126,
@@ -45,6 +46,7 @@ impl From<&SpringError> for SpringErrno {
45
46
SpringError::Unavailable { .. } => SpringErrno::Unavailable,
47
SpringError::Sql(_) => SpringErrno::Sql,
48
SpringError::InvalidConfig { .. } => SpringErrno::InvalidConfig,
49
+ SpringError::Null { .. } => SpringErrno::Null,
50
}
51
52
0 commit comments