/
germanubis
/
sqlx
ΠΠ±Π·ΠΎΡ
ΠΠΎΠΊΡΠΌΠ΅Π½ΡΠ°ΡΠΈΡ
ΠΠΎΠΉΡΠΈ
/
germanubis
/
sqlx
ΠΠΎΠ΄
ΠΠ°ΠΏΡΠΎΡΡ
0
ΠΠ°Π΄Π°ΡΠΈ
ΠΠΈΠΊΠΈ
ΠΠ°ΠΊΠ΅ΡΡ
0
Π Π΅Π»ΠΈΠ·Ρ
0
ΠΠ½Π°Π»ΠΈΡΠΈΠΊΠ°
ΠΠ΅Π·ΠΎΠΏΠ°ΡΠ½ΠΎΡΡΡ
v0.8.6
sqlx-sqlite/src/statement/mod.rs
79 ΡΡΡΠΎΠΊ
2 KB
Austin Bonander
fix: clippy warnings
13 ΠΈΡΠ½ 2024, 23:11
13 ΠΈΡΠ½ 2024, 23:11
bae083c
ΠΠΎΠ΄
ΠΠ²ΡΠΎΡΡΡΠ²ΠΎ
Π ΡΡΠΌ ΠΊΠΎΠ΄?
use crate::column::ColumnIndex; use crate::error::Error; use crate::ext::ustr::UStr; use crate::{Sqlite, SqliteArguments, SqliteColumn, SqliteTypeInfo}; use sqlx_core::{Either, HashMap}; use std::borrow::Cow; use std::sync::Arc; pub(crate) use sqlx_core::statement::*; mod handle; pub(super) mod unlock_notify; mod r#virtual; pub(crate) use handle::StatementHandle; pub(crate) use r#virtual::VirtualStatement; #[derive(Debug, Clone)] #[allow(clippy::rc_buffer)] pub struct SqliteStatement<'q> { pub(crate) sql: Cow<'q, str>, pub(crate) parameters: usize, pub(crate) columns: Arc<Vec<SqliteColumn>>, pub(crate) column_names: Arc<HashMap<UStr, usize>>, } impl<'q> Statement<'q> for SqliteStatement<'q> { type Database = Sqlite; fn to_owned(&self) -> SqliteStatement<'static> { SqliteStatement::<'static> { sql: Cow::Owned(self.sql.clone().into_owned()), parameters: self.parameters, columns: Arc::clone(&self.columns), column_names: Arc::clone(&self.column_names), } } fn sql(&self) -> &str { &self.sql } fn parameters(&self) -> Option<Either<&[SqliteTypeInfo], usize>> { Some(Either::Right(self.parameters)) } fn columns(&self) -> &[SqliteColumn] { &self.columns } impl_statement_query!(SqliteArguments<'_>); } impl ColumnIndex<SqliteStatement<'_>> for &'_ str { fn index(&self, statement: &SqliteStatement<'_>) -> Result<usize, Error> { statement .column_names .get(*self) .ok_or_else(|| Error::ColumnNotFound((*self).into())) .copied() } } // #[cfg(feature = "any")] // impl<'q> From<SqliteStatement<'q>> for crate::any::AnyStatement<'q> { // #[inline] // fn from(statement: SqliteStatement<'q>) -> Self { // crate::any::AnyStatement::<'q> { // columns: statement // .columns // .iter() // .map(|col| col.clone().into()) // .collect(), // column_names: statement.column_names, // parameters: Some(Either::Right(statement.parameters)), // sql: statement.sql, // } // } // }