pub trait Locate {
    type Output;

    fn locate(self, span: Z80Span, size: usize) -> Self::Output;
}
Expand description

Implement this trait for type previousy defined without source location.

Required Associated Types

Required Methods

Implementors