pub type TextDecorationTrim = GenericTextDecorationTrim<Length>;
Expand description
Implements type for text-decoration-trim
property
Aliased Type§
#[repr(C, u8)]pub enum TextDecorationTrim {
Auto,
Length {
start: Length,
end: Length,
},
}
Variants§
Implementations§
Trait Implementations§
Source§impl Parse for TextDecorationTrim
impl Parse for TextDecorationTrim
Source§fn parse<'i, 't>(
ctx: &ParserContext<'_>,
input: &mut Parser<'i, 't>,
) -> Result<Self, ParseError<'i>>
fn parse<'i, 't>( ctx: &ParserContext<'_>, input: &mut Parser<'i, 't>, ) -> Result<Self, ParseError<'i>>
Parse a value of this type. Read more