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

Structs should implement this trait to return an optional location

Required Methods

Implementors