sqlite-rs 0.3.7

SQLite reader in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use super::traits::ArgName;

#[derive(Debug)]
pub(crate) struct CliHelp;

impl ArgName for CliHelp {
  fn arg_name() -> String {
    "--help".into()
  }
}