Skip to main content

parse_layout_margin_right

Function parse_layout_margin_right 

Source
pub fn parse_layout_margin_right<'a>(
    input: &'a str,
) -> Result<LayoutMarginRight, CssPixelValueParseError<'a>>
Expand description

Parses a LayoutMarginRight attribute from a &str

ยงExample

assert_eq!(parse_layout_margin_right("5px"), Ok(LayoutMarginRight { inner: PixelValue::px(5.0) }));