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

Convenience trait for creating a Frame from an iterator of Fields.

This is the inverse of IntoFrame and is defined for all implementors of that trait.

Required Methods§

source

fn from_fields(name: impl Into<String>, fields: T) -> Frame

Create a Frame with the given name from fields.

Object Safety§

This trait is not object safe.

Implementors§