Skip to content

Commit c600481

Browse files
authored
Merge pull request #6 from rkarp/fix-err-type
Make errors usable across threads
2 parents 73d1c6c + acec93e commit c600481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ pub enum Error {
3838
NullValue,
3939

4040
/// Error when conversion from a string to an Oracle value fails
41-
ParseError(Box<error::Error>),
41+
ParseError(Box<error::Error + Send + Sync>),
4242

4343
/// Error when conversion from a type to another fails due to out-of-range
4444
OutOfRange(String),

0 commit comments

Comments
 (0)