(&mut self)
| 79 | } |
| 80 | |
| 81 | pub fn get_mut(&mut self) -> &mut S { |
| 82 | match &mut self.local_state { |
| 83 | Some(state) => state, |
| 84 | None => panic!("unwrap on None state"), |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | pub fn get(&self) -> &S { |
| 89 | match &self.local_state { |
no outgoing calls
no test coverage detected