pub trait IntoFragments<T> {
// Required method
fn into_fragments(self) -> impl Iterator<Item = Fragment<T>>;
}
Expand description
Converts self into a collection of Fragment
s.
Required Methods§
Sourcefn into_fragments(self) -> impl Iterator<Item = Fragment<T>>
fn into_fragments(self) -> impl Iterator<Item = Fragment<T>>
Converts self into a collection of Fragment
s.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.