pub type SVGStrokeDashArray = GenericSVGStrokeDashArray<NonNegativeLengthPercentage>;
Expand description
[
Aliased Type§
enum SVGStrokeDashArray {
Values(OwnedSlice<NonNegative<LengthPercentage>>),
ContextValue,
}
Variants§
Values(OwnedSlice<NonNegative<LengthPercentage>>)
[ <length> | <percentage> | <number> ]#
ContextValue
context-value
Trait Implementations§
source§impl Parse for SVGStrokeDashArray
impl Parse for SVGStrokeDashArray
source§fn parse<'i, 't>(
context: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
) -> Result<Self, ParseError<'i>>
fn parse<'i, 't>( context: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<Self, ParseError<'i>>
Parse a value of this type. Read more