into_attr/
lib.rs

1use dot_structures::Attribute;
2pub trait IntoAttribute {
3    fn into_attr(self) -> Attribute;
4}