/
germanubis
/
sqlx
Обзор
Документация
Войти
/
germanubis
/
sqlx
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
sqlx-sqlite/src/options/locking_mode.rs
38 строк
1 KB
Austin Bonander
fix: clippy warnings
13 июн 2024, 23:11
13 июн 2024, 23:11
bae083c
Код
Авторство
О чём код?
use crate::error::Error; use std::str::FromStr; /// Refer to [SQLite documentation] for the meaning of the connection locking mode. /// /// [SQLite documentation]: https://www.sqlite.org/pragma.html#pragma_locking_mode #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)] pub enum SqliteLockingMode { #[default] Normal, Exclusive, } impl SqliteLockingMode { pub(crate) fn as_str(&self) -> &'static str { match self { SqliteLockingMode::Normal => "NORMAL", SqliteLockingMode::Exclusive => "EXCLUSIVE", } } } impl FromStr for SqliteLockingMode { type Err = Error; fn from_str(s: &str) -> Result<Self, Error> { Ok(match &*s.to_ascii_lowercase() { "normal" => SqliteLockingMode::Normal, "exclusive" => SqliteLockingMode::Exclusive, _ => { return Err(Error::Configuration( format!("unknown value {s:?} for `locking_mode`").into(), )); } }) } }