(s: &str)
| 29 | type Err = (); |
| 30 | |
| 31 | fn from_str(s: &str) -> Result<Self, Self::Err> { |
| 32 | Ok(match s { |
| 33 | "full" => Self::Full, |
| 34 | "blocks" => Self::BlocksOnly, |
| 35 | _ => Self::BlocksOnly, |
| 36 | }) |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | pub fn save_block_coverage(mut config: Config, mode: SaveMode) -> anyhow::Result<()> { |
nothing calls this directly
no outgoing calls
no test coverage detected