pub struct PartialHereDoc {
    pub delimiter: Word,
    pub remove_tabs: bool,
}
Expand description

Here-document without a content.

This is a temporary data that is created when a here-document operator is parsed. It contains the delimiter word and the type of the operator. It is used later when the content of the here-document is read.

Fields

delimiter: Word

Token that marks the end of the content of the here-document.

remove_tabs: bool

Whether leading tab characters should be removed from each line of the here-document content. This value is true for the <<- operator and false for <<.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.