[][src]Struct druid::Window

pub struct Window<T: Data> { /* fields omitted */ }

Per-window state not owned by user code.

Methods

impl<T: Data> Window<T>[src]

pub fn new(
    root: impl Widget<T> + 'static,
    title: LocalizedString<T>,
    menu: Option<MenuDesc<T>>
) -> Window<T>
[src]

pub fn event(
    &mut self,
    event: &Event,
    ctx: &mut EventCtx,
    data: &mut T,
    env: &Env
)
[src]

pub fn update(&mut self, update_ctx: &mut UpdateCtx, data: &T, env: &Env)[src]

pub fn layout(&mut self, layout_ctx: &mut LayoutCtx, data: &T, env: &Env)[src]

pub fn paint(&mut self, paint_ctx: &mut PaintCtx, data: &T, env: &Env)[src]

Auto Trait Implementations

impl<T> !Send for Window<T>

impl<T> !Sync for Window<T>

impl<T> Unpin for Window<T> where
    T: Unpin

impl<T> !UnwindSafe for Window<T>

impl<T> !RefUnwindSafe for Window<T>

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> RoundFrom<T> for T

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