Trait kailua_env::WithLoc [] [src]

pub trait WithLoc: Sized {
    fn with_loc<Loc: Into<Span>>(self, loc: Loc) -> Spanned<Self> { ... }
    fn without_loc(self) -> Spanned<Self> { ... }
}

A helper trait for constructing Spanned<T> value.

Provided Methods

Implementors