Struct panoramix::widgets::flex_widget::FlexWidget[][src]

pub struct FlexWidget<Children: WidgetSequence> {
    pub children_seq: Children,
    // some fields omitted
}

A container Druid widget, copy-pasted from Druid with some modifications

Fields

children_seq: Children

Trait Implementations

impl<Children: WidgetSequence> Widget<DruidAppData> for FlexWidget<Children>[src]

Auto Trait Implementations

impl<Children> RefUnwindSafe for FlexWidget<Children> where
    Children: RefUnwindSafe

impl<Children> Send for FlexWidget<Children> where
    Children: Send

impl<Children> Sync for FlexWidget<Children> where
    Children: Sync

impl<Children> Unpin for FlexWidget<Children> where
    Children: Unpin

impl<Children> UnwindSafe for FlexWidget<Children> where
    Children: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, W> WidgetExt<T> for W where
    T: Data,
    W: 'static + Widget<T>, 
[src]