Trait xso::ElementCodec

source ·
pub trait ElementCodec<T> {
    // Required methods
    fn decode(value: Self) -> T;
    fn encode(value: T) -> Self;
}
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.

Required Methods§

source

fn decode(value: Self) -> T

Transform the destructured value further toward the field type.

source

fn encode(value: T) -> Self

Transform the field type back to something which can be structured into XML.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> ElementCodec<T> for T