Trait svgdom::FromSpan[][src]

pub trait FromSpan: FromStr {
    fn from_span(s: StrSpan) -> Result<Self, Self::Err>;
}

A trait for parsing data from a string.

Required Methods

Parses data from a StrSpan.

Implementors