pub trait IntoFrame {
    // Required method
    fn into_frame(self, name: impl Into<String>) -> Frame ;
}
Expand description

Convenience trait for converting iterators of Fields into a Frame.

Required Methods§

source

fn into_frame(self, name: impl Into<String>) -> Frame

Create a Frame with the given name from self.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> IntoFrame for T
where T: IntoIterator<Item = Field>,