Milky2018/css/values does not have a README file
impl Show for AnimationDirectionimpl Show for AnimationFillModeimpl Show for AnimationIterationCountimpl Show for AnimationPlayStatepub(all) struct BoundingRect {
x : Double
y : Double
width : Double
height : Double
}impl Show for BoundingRectpub(all) enum Easing {
Linear
Ease
EaseIn
EaseOut
EaseInOut
EaseInSine
EaseOutSine
EaseInOutSine
EaseInQuad
EaseOutQuad
EaseInOutQuad
EaseInCubic
EaseOutCubic
EaseInOutCubic
EaseInQuart
EaseOutQuart
EaseInOutQuart
EaseInQuint
EaseOutQuint
EaseInOutQuint
EaseInExpo
EaseOutExpo
EaseInOutExpo
EaseInCirc
EaseOutCirc
EaseInOutCirc
EaseInBack
EaseOutBack
EaseInOutBack
EaseInElastic
EaseOutElastic
EaseInOutElastic
EaseInBounce
EaseOutBounce
EaseInOutBounce
LinearFunction(Array[LinearEasingPoint])
CubicBezier(Double, Double, Double, Double)
Steps(Int, StepPosition)
} derive(Eq, Debug)fn Easing::frame(self : Easing, start_value : Double, end_value : Double, progress : Double) -> EasingFramefn Easing::frames(self : Easing, start_value : Double, end_value : Double, count : Int) -> Array[EasingFrame]pub(all) struct EasingFrame {
progress : Double
eased_progress : Double
value : Double
}impl Show for EasingFrameimpl Show for FlexDirectionimpl Show for GradientStopimpl Show for GridAutoFlowimpl Show for GridTemplateKindpub struct Line[T] {
start : T
end : T
}pub struct Point[T] {
x : T
y : T
}impl Show for RepeatCountpub(all) enum SingleTrackSizing {
Length(Double)
Percent(Double)
Fr(Double)
Auto
MinContent
MaxContent
MinMax(MinTrackSizing, MaxTrackSizing)
FitContentLength(Double)
FitContentPercent(Double)
} derive(Eq, Debug)impl Show for SingleTrackSizingpub struct Size[T] {
width : T
height : T
}impl Show for StepPositionpub(all) enum TrackSizingFunction {
Length(Double)
Percent(Double)
Fr(Double)
Auto
MinContent
MaxContent
MinMax(MinTrackSizing, MaxTrackSizing)
Repeat(RepeatCount, Array[SingleTrackSizing], Array[Array[String]])
FitContentLength(Double)
FitContentPercent(Double)
} derive(Eq, Debug)impl Show for TrackSizingFunctionfn apply_aspect_ratio_height(width : Double, aspect_ratio : Double?) -> Double?fn apply_aspect_ratio_width(height : Double, aspect_ratio : Double?) -> Double?fn clamp(value : Double, min_val : Double, max_val : Double) -> Doublefn resolve_dimensions_with_aspect_ratio(width : Double?, height : Double?, aspect_ratio : Double?, min_width : Double, max_width : Double, min_height : Double, max_height : Double) -> (Double?, Double?)CSS parser, selector, cascade, and computed-style core maintained for Milky2018/svg