Struct syntax::ast::Attribute
[−]
[src]
pub struct Attribute {
pub id: AttrId,
pub style: AttrStyle,
pub value: MetaItem,
pub is_sugared_doc: bool,
pub span: Span,
}rustc_private)Meta-data associated with an item Doc-comments are promoted to attributes that have is_sugared_doc = true
Fields
id: AttrId
rustc_private)style: AttrStyle
rustc_private)value: MetaItem
rustc_private)is_sugared_doc: bool
rustc_private)span: Span
rustc_private)Methods
impl Attribute[src]
fn check_name(&self, name: &str) -> bool
rustc_private)fn name(&self) -> Name
rustc_private)fn value_str(&self) -> Option<Symbol>
rustc_private)fn meta_item_list(&self) -> Option<&[NestedMetaItem]>
rustc_private)fn is_word(&self) -> bool
rustc_private)fn span(&self) -> Span
rustc_private)fn is_meta_item_list(&self) -> bool
rustc_private)fn is_value_str(&self) -> bool
rustc_private)Indicates if the attribute is a Value String.
impl Attribute[src]
fn meta(&self) -> &MetaItem
rustc_private)Extract the MetaItem from inside this Attribute.
fn with_desugared_doc<T, F>(&self, f: F) -> T where F: FnOnce(&Attribute) -> T
rustc_private)Convert self to a normal #[doc="foo"] comment, if it is a
comment like /// or /** */. (Returns self unchanged for
non-sugared doc attributes.)
Trait Implementations
impl Clone for Attribute[src]
fn clone(&self) -> Attribute
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl PartialEq for Attribute[src]
fn eq(&self, __arg_0: &Attribute) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Attribute) -> bool
This method tests for !=.
impl Eq for Attribute[src]
impl Encodable for Attribute[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>
🔬 This is a nightly-only experimental API. (rustc_private)
deprecated in favor of rustc-serialize on crates.io
impl Decodable for Attribute[src]
fn decode<__D: Decoder>(__arg_0: &mut __D) -> Result<Attribute, __D::Error>
🔬 This is a nightly-only experimental API. (rustc_private)
deprecated in favor of rustc-serialize on crates.io
impl Hash for Attribute[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the state given, updating the hasher as necessary.
fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher1.3.0
Feeds a slice of this type into the state provided.