pub trait IntoCode {
// Required method
fn into_code(self) -> Result<OwnedCellSlice, Error>;
}Expand description
Anything that can be used as a VM code source.
Required Methods§
fn into_code(self) -> Result<OwnedCellSlice, Error>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".