Struct cranelift_reader::Comment[][src]

pub struct Comment<'a> {
    pub entity: AnyEntity,
    pub text: &'a str,
}

A comment in a parsed function.

The comment belongs to the immediately preceding entity, whether that is an EBB header, and instruction, or one of the preamble declarations.

Comments appearing inside the function but before the preamble, as well as comments appearing after the function are tagged as AnyEntity::Function.

Fields

The entity this comment is attached to. Comments always follow their entity.

Text of the comment, including the leading ;.

Trait Implementations

impl<'a> Clone for Comment<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a> PartialEq for Comment<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> Eq for Comment<'a>
[src]

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for Comment<'a>

impl<'a> Sync for Comment<'a>