Lines Matching refs:AttrStyle
177 pub style: AttrStyle,
447 pub enum AttrStyle {
611 AttrStyle::Outer => true, in outer()
612 AttrStyle::Inner(_) => false, in outer()
622 AttrStyle::Inner(_) => true, in inner()
623 AttrStyle::Outer => false, in inner()
650 use crate::attr::{AttrStyle, Attribute, Meta, MetaList, MetaNameValue};
672 style: AttrStyle::Inner(input.parse()?), in single_parse_inner()
682 style: AttrStyle::Outer, in single_parse_outer()
764 pub(super) struct DisplayAttrStyle<'a>(pub &'a AttrStyle);
769 AttrStyle::Outer => "#", in fmt()
770 AttrStyle::Inner(_) => "#!", in fmt()
792 use crate::attr::{AttrStyle, Attribute, Meta, MetaList, MetaNameValue};
802 if let AttrStyle::Inner(b) = &self.style { in to_tokens()