This is not needed. (I'm not sure whether I did this because
ambassador didn't like the lifetime argument, or just because I saw it
in passing.)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
pub trait PieceSpec: Debug + Sync + Send + 'static {
#[throws(SpecError)]
fn count(&self, _pcaliases: &PieceAliases) -> usize { 1 }
- fn load(&self, pla: PieceLoadArgs<'_>) -> Result<SpecLoaded, SpecError>;
+ fn load(&self, pla: PieceLoadArgs) -> Result<SpecLoaded, SpecError>;
/// Used when a piece wants to use another for its occulted form
fn load_inert(&self, _ig: &Instance, _:SpecDepth)
-> Result<SpecLoadedInert, SpecError> {