Skip to content

Commit

Permalink
clean up some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhannadAlrusayni committed Sep 17, 2021
1 parent 3bf26a7 commit 15db5d2
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions src/executor/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,42 +452,3 @@ try_from_u64_string!(String);

#[cfg(feature = "with-uuid")]
try_from_u64_err!(uuid::Uuid);

// impl<A, B> TryFromU64 for (A, B)
// where
// A: TryFromU64,
// B: TryFromU64,
// {
// fn try_from_u64(_: u64) -> Result<Self, DbErr> {
// Err(DbErr::Exec(
// "(A, B) cannot be converted from u64".to_owned(),
// ))
// }
// }

// impl<A, B, C> TryFromU64 for (A, B, C)
// where
// A: TryFromU64,
// B: TryFromU64,
// C: TryFromU64,
// {
// fn try_from_u64(_: u64) -> Result<Self, DbErr> {
// Err(DbErr::Exec(
// "(A, B, C) cannot be converted from u64".to_owned(),
// ))
// }
// }

// impl<A, B, C, D> TryFromU64 for (A, B, C, D)
// where
// A: TryFromU64,
// B: TryFromU64,
// C: TryFromU64,
// D: TryFromU64,
// {
// fn try_from_u64(_: u64) -> Result<Self, DbErr> {
// Err(DbErr::Exec(
// "(A, B, C, D) cannot be converted from u64".to_owned(),
// ))
// }
// }

0 comments on commit 15db5d2

Please sign in to comment.