#![allow(clippy::too_many_arguments)]pubmodbutton;pubmodcontainer;pubmodtoggler;pubusebutton::Button;pubusecontainer::Container;pubusetoggler::Toggler;/// A convenience type to optimize style-able widgets,
/// to only do the "expensize" style calculations if needed.
#[derive(Debug)]pubenumStyleType<T> {/// The style is either default, or set manually in the `view`.
Static(T),/// The stlye is being animated. Blend between the two values.
Blend(T, T,f32),}