pub fn parse_layout_margin_left( input: &str, ) -> Result<LayoutMarginLeft, CssPixelValueParseError<'_>>
Parses a LayoutMarginLeft attribute from a &str
LayoutMarginLeft
&str
assert_eq!(parse_layout_margin_left("5px"), Ok(LayoutMarginLeft { inner: PixelValue::px(5.0) }));
Returns an error if input is not a valid CSS value for this property.
input