MCPcopy Create free account
hub / github.com/ddd/gpb / Mode

Enum Mode

src/cli.rs:4–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2
3#[derive(Debug, Copy, Clone, PartialEq, Eq, ValueEnum)]
4pub enum Mode {
5 #[value(name = "quick")]
6 Quick, // Reads from file (formerly "QuickScan"/"File")
7 #[value(name = "full")]
8 Full, // Generates based on country format (formerly "FullScan"/"OTF")
9 #[value(name = "blacklist")]
10 Blacklist,
11 #[value(name = "email")]
12 Email, // Mode for email lookup
13 #[value(name = "csv")]
14 Csv, // Process a CSV file with masked phone numbers
15}
16
17#[derive(Debug, Copy, Clone, PartialEq, Eq, ValueEnum)]
18pub enum LookupType {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected