Trait HasAllProps

Source
pub trait HasAllProps<P, How> { }
Expand description

A marker trait to ensure that the builder has received all required props. For each struct deriving Properties, an impl is generated, requiring HasProp<p> for all properties marked as required as a bound on the impl.

Implementors§

Source§

impl<T> HasAllProps<(), T> for T