pub trait Properties: PartialEq<Self> {
    type Builder;

    fn builder() -> Self::Builder;
}
Expand description

Trait for building properties for a component

Required Associated Types

Builder that will be used to construct properties

Required Methods

Entrypoint for building properties

Implementations on Foreign Types

Implementors