Trait xso::ElementCodec
source · pub trait ElementCodec<T>: Sized {
// Required methods
fn decode(value: Self) -> Result<T, Error>;
fn encode(value: T) -> Result<Self, Error>;
}
Expand description
Trait to support destructuring of child structs beyond what the
extract(..)
attribute can deliver.
This trait can only be sensibly implemented on types which implement both
FromXml
and IntoXml
. However, as there may be corner cases where only
one of these other traits is needed, they’re not strictly included in the
trait bounds.
When used as value for codec = ..
inside a #[xml(child(..))]
or
#[xml(children(..))]
field attribute, the field is destructured using
the trait implementations of FromXml
/ IntoXml
and then converted
to the actual field’s type by invoking the ElementCodec<T>
methods, with
T
being the field type.
This trait is automatically implemented on minidom::Element
for all
types which can be converted to and from minidom::Element
with an error
which is convertible to crate::error::Error
.