Trait svd_parser::Parse
source · [−]pub trait Parse {
type Object;
type Error;
type Config;
fn parse(
elem: &Node<'_, '_>,
config: &Self::Config
) -> Result<Self::Object, Self::Error>;
}
Expand description
Parse trait allows SVD objects to be parsed from XML elements.