(self)
| 35 | |
| 36 | impl SqliteTempStore { |
| 37 | fn pragma_value(self) -> String { |
| 38 | match self { |
| 39 | SqliteTempStore::Default => 0.to_string(), |
| 40 | SqliteTempStore::File => 1.to_string(), |
| 41 | SqliteTempStore::Memory => 2.to_string(), |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | #[derive(Clone, Debug)] |