pub trait At<T> {
// Required method
fn at(self, span: Span) -> Result<T, EcoVec<SourceDiagnostic>>;
}
Expand description
Convert a StrResult
or HintedStrResult
to a SourceResult
by
adding span information.
pub trait At<T> {
// Required method
fn at(self, span: Span) -> Result<T, EcoVec<SourceDiagnostic>>;
}
Convert a StrResult
or HintedStrResult
to a SourceResult
by
adding span information.