pub trait IntoPropList {
    // Required method
    fn into_prop_list(self) -> Prop;
}

Required Methods§

Implementors§

source§

impl<I: IntoIterator<Item = K>, K: Into<Prop>> IntoPropList for I