so just so I know I'm getting this right, stucts like `Button` should become something like ```rust

so just so I know I'm getting this right, stucts like
Button
should become something like
pub struct Button {
    transform: Resultant<Transform>,
    size: Resultant<Vector2<f32>>,
    max_hover_distance: Resultant<f32>,
    line_thickness: Resultant<f32>,
    accent_color: Resultant<Color>,
    debug: Option<DebugSettings>,
}
Was this page helpful?