pub trait Resolve {
type Output;
// Required method
fn resolve(self, styles: StyleChain<'_>) -> Self::Output;
}
Expand description
A property that is resolved with other properties from the style chain.
Required Associated Types§
Required Methods§
Sourcefn resolve(self, styles: StyleChain<'_>) -> Self::Output
fn resolve(self, styles: StyleChain<'_>) -> Self::Output
Resolve the value using the style chain.