| 95 | |
| 96 | #[derive(Clone, Serialize, Deserialize)] |
| 97 | pub struct Options<'a> { |
| 98 | pub path: &'a str, |
| 99 | pub storage_name: &'a str, |
| 100 | pub total_page_size: usize, |
| 101 | pub stype: StorageType, |
| 102 | pub off_reporter: bool, |
| 103 | } |
| 104 | |
| 105 | impl<'a> Options<'a> { |
| 106 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected