1 2 3 4 5 6 7 8 9 10
mod operators; #[derive(Debug, PartialEq, Eq)] pub(super) struct SqliteExpression(String); impl From<String> for SqliteExpression { fn from(value: String) -> Self { Self(value) } }