Skip to main content

Builder

Trait Builder 

Source
pub trait Builder {
    // Required method
    fn build(self) -> PluginValue;
}
Expand description

A builder that can be converted to a PluginValue

Required Methods§

Source

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".

Implementors§