pub trait HasPython {
// Required methods
fn python(&self) -> &PythonExecutable;
fn into_python(self) -> PythonExecutable;
}Required Methods§
fn python(&self) -> &PythonExecutable
fn into_python(self) -> PythonExecutable
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".