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