Trait widgetui::widget::into_widget_set::IntoWidgetSet

source ·
pub trait IntoWidgetSet<Inputs, Types> {
    // Required method
    fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>;
}
Expand description

Enables a tuple of Widgets to be registered with the widget method.

Required Methods§

source

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

Implementations on Foreign Types§

source§

impl<N0, I0, W0: for<'a> Widget + 'static, F0> IntoWidgetSet<(I0,), (N0,)> for (F0,)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, I0, I1, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, F0, F1> IntoWidgetSet<(I0, I1), (N0, N1)> for (F0, F1)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, I0, I1, I2, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, F0, F1, F2> IntoWidgetSet<(I0, I1, I2), (N0, N1, N2)> for (F0, F1, F2)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, I0, I1, I2, I3, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, F0, F1, F2, F3> IntoWidgetSet<(I0, I1, I2, I3), (N0, N1, N2, N3)> for (F0, F1, F2, F3)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, I0, I1, I2, I3, I4, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, F0, F1, F2, F3, F4> IntoWidgetSet<(I0, I1, I2, I3, I4), (N0, N1, N2, N3, N4)> for (F0, F1, F2, F3, F4)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, I0, I1, I2, I3, I4, I5, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5> IntoWidgetSet<(I0, I1, I2, I3, I4, I5), (N0, N1, N2, N3, N4, N5)> for (F0, F1, F2, F3, F4, F5)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, I0, I1, I2, I3, I4, I5, I6, I7, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7), (N0, N1, N2, N3, N4, N5, N6, N7)> for (F0, F1, F2, F3, F4, F5, F6, F7)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, I0, I1, I2, I3, I4, I5, I6, I7, I8, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8), (N0, N1, N2, N3, N4, N5, N6, N7, N8)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, W13: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>, F13: for<'a> IntoWidget<I13, N13, Widget = W13>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, W13: for<'a> Widget + 'static, W14: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>, F13: for<'a> IntoWidget<I13, N13, Widget = W13>, F14: for<'a> IntoWidget<I14, N14, Widget = W14>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, W13: for<'a> Widget + 'static, W14: for<'a> Widget + 'static, W15: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>, F13: for<'a> IntoWidget<I13, N13, Widget = W13>, F14: for<'a> IntoWidget<I14, N14, Widget = W14>, F15: for<'a> IntoWidget<I15, N15, Widget = W15>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, W13: for<'a> Widget + 'static, W14: for<'a> Widget + 'static, W15: for<'a> Widget + 'static, W16: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>, F13: for<'a> IntoWidget<I13, N13, Widget = W13>, F14: for<'a> IntoWidget<I14, N14, Widget = W14>, F15: for<'a> IntoWidget<I15, N15, Widget = W15>, F16: for<'a> IntoWidget<I16, N16, Widget = W16>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16, N17, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16, I17, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, W13: for<'a> Widget + 'static, W14: for<'a> Widget + 'static, W15: for<'a> Widget + 'static, W16: for<'a> Widget + 'static, W17: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16, I17), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16, N17)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>, F13: for<'a> IntoWidget<I13, N13, Widget = W13>, F14: for<'a> IntoWidget<I14, N14, Widget = W14>, F15: for<'a> IntoWidget<I15, N15, Widget = W15>, F16: for<'a> IntoWidget<I16, N16, Widget = W16>, F17: for<'a> IntoWidget<I17, N17, Widget = W17>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16, N17, N18, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16, I17, I18, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, W13: for<'a> Widget + 'static, W14: for<'a> Widget + 'static, W15: for<'a> Widget + 'static, W16: for<'a> Widget + 'static, W17: for<'a> Widget + 'static, W18: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16, I17, I18), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16, N17, N18)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>, F13: for<'a> IntoWidget<I13, N13, Widget = W13>, F14: for<'a> IntoWidget<I14, N14, Widget = W14>, F15: for<'a> IntoWidget<I15, N15, Widget = W15>, F16: for<'a> IntoWidget<I16, N16, Widget = W16>, F17: for<'a> IntoWidget<I17, N17, Widget = W17>, F18: for<'a> IntoWidget<I18, N18, Widget = W18>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

source§

impl<N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16, N17, N18, N19, I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16, I17, I18, I19, W0: for<'a> Widget + 'static, W1: for<'a> Widget + 'static, W2: for<'a> Widget + 'static, W3: for<'a> Widget + 'static, W4: for<'a> Widget + 'static, W5: for<'a> Widget + 'static, W6: for<'a> Widget + 'static, W7: for<'a> Widget + 'static, W8: for<'a> Widget + 'static, W9: for<'a> Widget + 'static, W10: for<'a> Widget + 'static, W11: for<'a> Widget + 'static, W12: for<'a> Widget + 'static, W13: for<'a> Widget + 'static, W14: for<'a> Widget + 'static, W15: for<'a> Widget + 'static, W16: for<'a> Widget + 'static, W17: for<'a> Widget + 'static, W18: for<'a> Widget + 'static, W19: for<'a> Widget + 'static, F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19> IntoWidgetSet<(I0, I1, I2, I3, I4, I5, I6, I7, I8, I9, I10, I11, I12, I13, I14, I15, I16, I17, I18, I19), (N0, N1, N2, N3, N4, N5, N6, N7, N8, N9, N10, N11, N12, N13, N14, N15, N16, N17, N18, N19)> for (F0, F1, F2, F3, F4, F5, F6, F7, F8, F9, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19)
where F0: for<'a> IntoWidget<I0, N0, Widget = W0>, F1: for<'a> IntoWidget<I1, N1, Widget = W1>, F2: for<'a> IntoWidget<I2, N2, Widget = W2>, F3: for<'a> IntoWidget<I3, N3, Widget = W3>, F4: for<'a> IntoWidget<I4, N4, Widget = W4>, F5: for<'a> IntoWidget<I5, N5, Widget = W5>, F6: for<'a> IntoWidget<I6, N6, Widget = W6>, F7: for<'a> IntoWidget<I7, N7, Widget = W7>, F8: for<'a> IntoWidget<I8, N8, Widget = W8>, F9: for<'a> IntoWidget<I9, N9, Widget = W9>, F10: for<'a> IntoWidget<I10, N10, Widget = W10>, F11: for<'a> IntoWidget<I11, N11, Widget = W11>, F12: for<'a> IntoWidget<I12, N12, Widget = W12>, F13: for<'a> IntoWidget<I13, N13, Widget = W13>, F14: for<'a> IntoWidget<I14, N14, Widget = W14>, F15: for<'a> IntoWidget<I15, N15, Widget = W15>, F16: for<'a> IntoWidget<I16, N16, Widget = W16>, F17: for<'a> IntoWidget<I17, N17, Widget = W17>, F18: for<'a> IntoWidget<I18, N18, Widget = W18>, F19: for<'a> IntoWidget<I19, N19, Widget = W19>,

source§

fn into_widget_set(self) -> Vec<Box<dyn for<'a> Widget>>

Implementors§

source§

impl<I1, I2, W: Widget + 'static, Func1> IntoWidgetSet<I1, I2> for Func1
where Func1: for<'a> IntoWidget<I1, I2, Widget = W>,