[][src]Struct ommui_frontend_gtk::ui::main_window::W

pub struct W<CHILD: Update + Widget> { /* fields omitted */ }

The main window for an ommui-based application.

Trait Implementations

impl<CHILD: 'static + Update + Widget> Widget for W<CHILD> where
    <CHILD as Widget>::Root: SetValue
[src]

type Root = Window

The type of the root widget.

impl<CHILD: Update + Widget> Update for W<CHILD>[src]

type Model = CHILD::ModelParam

The type of the model.

type ModelParam = CHILD::ModelParam

The type of the parameter of the model() function used to initialize the model.

type Msg = Msg

The type of the messages sent to the update() method.

Auto Trait Implementations

impl<CHILD> !Send for W<CHILD>

impl<CHILD> !Sync for W<CHILD>

impl<CHILD> Unpin for W<CHILD> where
    <CHILD as Widget>::Root: Unpin

impl<CHILD> UnwindSafe for W<CHILD> where
    <CHILD as Update>::Msg: RefUnwindSafe,
    <CHILD as Widget>::Root: UnwindSafe

impl<CHILD> RefUnwindSafe for W<CHILD> where
    <CHILD as Update>::Msg: RefUnwindSafe,
    <CHILD as Widget>::Root: RefUnwindSafe

Blanket Implementations

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

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

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,