Enum twig::runtime::TraceEntry [] [src]

pub enum TraceEntry {
    SourceFile {
        target: String,
    },
    Operator {
        target: String,
        extension: String,
    },
    Position {
        from: Location,
    },
}

Stack trace record.

Variants

SourceFile

Trace source file change that caused the error.

Fields

target: String
Operator

Trace operator call that caused the error.

Fields

target: String
extension: String
Position

Trace position in last known source that cause the error.

Fields

from: Location