Trait svd_encoder::EncodeChildren[][src]

pub trait EncodeChildren {
    type Error;
    fn encode(&self) -> Result<Vec<XMLNode>, Self::Error>;
}
Expand description

EncodeChildren allows SVD objects to be encoded as a list of XML nodes This is typically used to merge with an existing element.

Associated Types

Encoding error

Required methods

Encode into XML/SVD children to merge with existing object

Implementations on Foreign Types

Implementors