Struct cretonne_reader::Details[][src]

pub struct Details<'a> {
    pub location: Location,
    pub comments: Vec<Comment<'a>>,
    pub map: SourceMap,
}

Additional details about a function parsed from a text string. These are useful for detecting test commands embedded in comments etc. The details to not affect the semantics of the function.

Fields

Location of the function keyword that begins this function.

Annotation comments that appeared inside or after the function.

Mapping of entity numbers to source locations.

Trait Implementations

impl<'a> Debug for Details<'a>
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Details<'a>

impl<'a> Sync for Details<'a>