#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum AttributeKind {
Inner,
Outer,
}
impl AttributeKind {
#[must_use]
pub const fn is_inner(self) -> bool {
matches!(self, Self::Inner)
}
#[must_use]
pub const fn is_outer(self) -> bool {
matches!(self, Self::Outer)
}
}