sq3-rs 0.2.13

SQLite reader with no dependencies
Documentation
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)
    }
}