Trait Resolve
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§
type Output
type Output
The type of the resolved output.
Required Methods§
fn resolve(self, styles: StyleChain<'_>) -> Self::Output
fn resolve(self, styles: StyleChain<'_>) -> Self::Output
Resolve the value using the style chain.