pub trait CanPutTapeHolder<H: TapeHolder> {
    type Output;

    fn with_tape_holder(self, tape_holder: H) -> Self::Output;
}

Required Associated Types

Required Methods

Implementors