pub trait Builder {
// Required method
fn build(self) -> PluginValue;
}Expand description
A builder that can be converted to a PluginValue
Required Methods§
Sourcefn build(self) -> PluginValue
fn build(self) -> PluginValue
Convert this builder to a PluginValue
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".