pub trait ProfileData: XNodeWrite + Sized {
    fn parse(it: &mut Peekable<Children<'_>>) -> Result<Self, Error>;
}
Expand description

A trait for the types that are legal to go in a TechniqueFx<T>.

Required methods

Parse the embedded data from a subsequence of children in the <technique> node.

Implementors