Trait Key

Source
pub trait Key<'a> {
    // Required method
    fn into_str(self) -> &'a str;
}

Required Methods§

Source

fn into_str(self) -> &'a str

Implementations on Foreign Types§

Source§

impl<'a> Key<'a> for &'a str

Source§

fn into_str(self) -> &'a str

Implementors§

Source§

impl Key<'static> for Metadata