pub trait IntoStyleBuilder<T> {
type Output;
// Required method
fn build(&self, styles: &mut Styles) -> Self::Output;
// Provided method
fn dependencies(&self) -> Vec<TypeId> { ... }
}
Expand description
A trait for converting a function into a style builder.
See StyleBuilder::new
for more information.
Required Associated Types§
Required Methods§
Provided Methods§
Sourcefn dependencies(&self) -> Vec<TypeId>
fn dependencies(&self) -> Vec<TypeId>
Get the dependencies of the style builder.