Skip to content

Commit b1d27f2

Browse files
committed
Fix clippy.
1 parent 10add18 commit b1d27f2

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/executor/query.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::{error::*, SelectGetableValue, SelectorRaw, Statement};
2-
use std::fmt;
2+
use std::{error::Error, fmt};
33

44
#[cfg(any(feature = "mock", feature = "proxy"))]
55
use crate::debug_print;
@@ -1362,11 +1362,8 @@ impl TryFromRawValue for uuid::Uuid {
13621362
}
13631363

13641364
fn try_from_string(s: String) -> Result<Self, DbErr> {
1365-
Ok(uuid::Uuid::parse_str(&s).map_err(|e| DbErr::TryIntoErr {
1366-
from: "String",
1367-
into: "uuid::Uuid",
1368-
source: Box::new(e),
1369-
})?)
1365+
Ok(uuid::Uuid::parse_str(&s)
1366+
.map_err(|e| DbErr::Type(format!("Failed to parse string to uuid::Uuid: {}", e)))?)
13701367
}
13711368
}
13721369

0 commit comments

Comments
 (0)