pub trait FromValue<'a, 'input: 'a>: Sized {
// Required method
fn parse(
node: SvgNode<'a, 'input>,
aid: AId,
value: &'a str,
) -> Option<Self>;
}
Expand description
A trait for parsing attribute values.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.