| 85 | |
| 86 | #[derive(Clone, Serialize, Deserialize)] |
| 87 | pub enum StorageType { |
| 88 | // Store to memory |
| 89 | RamCopies, |
| 90 | |
| 91 | // Store to memory and persist to disk |
| 92 | DiskCopies, |
| 93 | } |
| 94 | |
| 95 | |
| 96 | #[derive(Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected