pub trait Environment {
// Required methods
fn install_paths() -> Result<Vec<PathBuf>>;
fn build_paths() -> Result<Vec<PathBuf>>;
}Required Methods§
fn install_paths() -> Result<Vec<PathBuf>>
fn build_paths() -> Result<Vec<PathBuf>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".