diff --git a/xso/src/lib.rs b/xso/src/lib.rs index d9bd748..a5d291c 100644 --- a/xso/src/lib.rs +++ b/xso/src/lib.rs @@ -27,8 +27,18 @@ pub mod exports { /// Trait allowing to consume a struct and iterate its contents as /// serialisable [`rxml::Event`] items. +/// +/// **Important:** Changing the [`EventIter`][`Self::EventIter`] associated +/// type is considered a non-breaking change for any given implementation of +/// this trait. Always refer to a type's iterator type using fully-qualified +/// notation, for example: `::EventIter`. pub trait IntoXml { /// The iterator type. + /// + /// **Important:** Changing this type is considered a non-breaking change + /// for any given implementation of this trait. Always refer to a type's + /// iterator type using fully-qualified notation, for example: + /// `::EventIter`. type EventIter: Iterator>; /// Return an iterator which emits the contents of the struct or enum as