pub trait AttributeName {
    const NAME: &'static str;
}

Required Associated Constants§

source

const NAME: &'static str

Implementations on Foreign Types§

source§

impl<T: AttributeName> AttributeName for Option<T>

source§

const NAME: &'static str = T::NAME

Implementors§