I had a need to add a collection of elements, and had some trouble trying to do so using the
push function and convincing the borrow checker about self, I saw the Extend trait and implemented that,
I'm still somewhat new to using rust, so I'm not sure if this works as cohesively with
the rest of the library with regards to the Into<PreambleElement> trait or if I need change it to that.
I had a need to add a collection of elements, and had some trouble trying to do so using the
push
function and convincing the borrow checker about self, I saw the Extend trait and implemented that,I'm still somewhat new to using rust, so I'm not sure if this works as cohesively with the rest of the library with regards to the
Into<PreambleElement>
trait or if I need change it to that.Thanks.