pub trait Installation:
Any
+ Send
+ Sync {
// Provided method
fn post_install(&self, ctx: &mut ContextBuilder) { ... }
}
Expand description
An item that can be installed in a context.
Provided Methods§
Sourcefn post_install(&self, ctx: &mut ContextBuilder)
fn post_install(&self, ctx: &mut ContextBuilder)
A post-installation hook for additional context modifications required by the installation.
PDKs, for example, should use this hook to install their layer set and standard cell libraries.