Trait AttributesBuilderConfig

Source
pub trait AttributesBuilderConfig {
    type AB: AttributesBuilder;

    // Required method
    fn build(self) -> Self::AB;
}
Expand description

A trait for building AttributesBuilders.

Required Associated Types§

Source

type AB: AttributesBuilder

The type of AttributesBuilder to build.

Required Methods§

Source

fn build(self) -> Self::AB

Builds the AttributesBuilder.

Implementors§