Converts a CsskitAtomSet representing an attribute name to PropertyKind.
(self)
| 113 | |
| 114 | /// Converts a CsskitAtomSet representing an attribute name to PropertyKind. |
| 115 | pub fn to_property_kind(self) -> Option<PropertyKind> { |
| 116 | match self { |
| 117 | Self::Name => Some(PropertyKind::Name), |
| 118 | _ => None, |
| 119 | } |
| 120 | } |
| 121 | } |
no outgoing calls
no test coverage detected