pub trait ToTape<'a, T> {
// Required method
fn to_tape(self) -> Tape<'a, T>;
}Expand description
Provides the convenience function to_tape.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".