pub type RepeatLineStyle<'a> = RepeatFunction<NonEmpty<Vec<'a, LineStyle>>, AutoOr<PositiveNonZeroInt>>;Expand description
https://drafts.csswg.org/css-gaps-1/#typedef-repeat-line-style
<repeat-line-style> = repeat( [ <integer [1,∞]> ] , [ <line-style> ]+ )
<auto-repeat-line-style> = repeat( auto , [ <line-style> ]+ )Aliased Type§
#[repr(C)]pub struct RepeatLineStyle<'a> {
pub name: Function,
pub count: AutoOr<PositiveNonZeroInt>,
pub comma: Comma,
pub items: NonEmpty<Vec<'a, LineStyle>>,
pub close: RightParen,
}Fields§
§name: Function§count: AutoOr<PositiveNonZeroInt>§comma: Comma§items: NonEmpty<Vec<'a, LineStyle>>§close: RightParen