(&self)
| 345 | |
| 346 | impl EastAsianWidthAbbrName for EastAsianWidth { |
| 347 | fn abbr_name(&self) -> &'static str { |
| 348 | match self { |
| 349 | Self::Narrow => "Na", |
| 350 | Self::Wide => "W", |
| 351 | Self::Neutral => "N", |
| 352 | Self::Ambiguous => "A", |
| 353 | Self::FullWidth => "F", |
| 354 | Self::HalfWidth => "H", |
| 355 | } |
| 356 | } |
| 357 | } |
| 358 | |
| 359 | #[pyattr] |
no outgoing calls
no test coverage detected