pub trait Locate {
    fn loc(&self) -> Loc;
}
Expand description

A trait which can locate an expression in its source file.

Required Methods

Returns the location of this expression.

Implementors