pub trait PropertyIdentifier {
// Required method
fn into_identifier(self) -> Vec<String>;
}Expand description
Trait for values that can be converted into a property identifier.
Required Methods§
Sourcefn into_identifier(self) -> Vec<String>
fn into_identifier(self) -> Vec<String>
Convert the value into an identifier.