(&self, f: &mut std::fmt::Formatter<'_>)
| 198 | |
| 199 | impl Display for APIStyle { |
| 200 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 201 | match self { |
| 202 | APIStyle::Asymmetric => write!(f, "asymmetric"), |
| 203 | APIStyle::Symmetric => write!(f, "symmetric"), |
| 204 | } |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | impl FromStr for APIStyle { |