pub trait AttributesBuilderConfig {
type AB: AttributesBuilder;
// Required method
fn build(self) -> Self::AB;
}Expand description
A trait for building AttributesBuilders.
Required Associated Types§
Sourcetype AB: AttributesBuilder
type AB: AttributesBuilder
The type of AttributesBuilder to build.
Required Methods§
Sourcefn build(self) -> Self::AB
fn build(self) -> Self::AB
Builds the AttributesBuilder.