(&self, f: &mut fmt::Formatter)
| 151 | |
| 152 | impl fmt::Debug for Builder { |
| 153 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 154 | f.debug_struct("Builder") |
| 155 | .field("shared_flags", &self.inner.shared_flags().to_string()) |
| 156 | .finish() |
| 157 | } |
| 158 | } |
nothing calls this directly
no test coverage detected