1 2 3 4 5 6 7
use crate::AttributeKey; pub trait HasAttributeKey { fn attribute_key(&self) -> &AttributeKey; fn attribute_key_mut(&mut self) -> &mut AttributeKey; }