pub trait Plan: Sized + Sync {
// Required method
fn id(&self) -> String;
}
Expand description
The trait for the Install Plan that can be acted on by an Installer implementation.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.