PropertyIdentifier

Trait PropertyIdentifier 

Source
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§

Source

fn into_identifier(self) -> Vec<String>

Convert the value into an identifier.

Implementations on Foreign Types§

Source§

impl PropertyIdentifier for &[&str]

Source§

impl PropertyIdentifier for &[String]

Source§

impl PropertyIdentifier for Vec<String>

Source§

impl<const N: usize> PropertyIdentifier for &[&str; N]

Source§

impl<const N: usize> PropertyIdentifier for &[String; N]

Source§

impl<const N: usize> PropertyIdentifier for [&str; N]

Source§

impl<const N: usize> PropertyIdentifier for [String; N]

Implementors§