Fix clippy warnings

This commit is contained in:
gwenn
2024-02-24 11:02:09 +01:00
parent a96f61b17f
commit 1124d4363d
14 changed files with 2 additions and 15 deletions

View File

@@ -1,5 +1,4 @@
use super::{Value, ValueRef};
use std::convert::TryInto;
use std::error::Error;
use std::fmt;

View File

@@ -3,7 +3,6 @@ use super::{Null, Value, ValueRef};
use crate::vtab::array::Array;
use crate::{Error, Result};
use std::borrow::Cow;
use std::convert::TryFrom;
/// `ToSqlOutput` represents the possible output types for implementers of the
/// [`ToSql`] trait.