[][src]Struct druid::widget::ControllerHost

pub struct ControllerHost<W, C> { /* fields omitted */ }

A Widget that manages a child and a Controller.

Implementations

impl<W, C> ControllerHost<W, C>[src]

pub fn new(widget: W, controller: C) -> ControllerHost<W, C>[src]

Create a new ControllerHost.

Trait Implementations

impl<T, W: Widget<T>, C: Controller<T, W>> Widget<T> for ControllerHost<W, C>[src]

Auto Trait Implementations

impl<W, C> RefUnwindSafe for ControllerHost<W, C> where
    C: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, C> Send for ControllerHost<W, C> where
    C: Send,
    W: Send

impl<W, C> Sync for ControllerHost<W, C> where
    C: Sync,
    W: Sync

impl<W, C> Unpin for ControllerHost<W, C> where
    C: Unpin,
    W: Unpin

impl<W, C> UnwindSafe for ControllerHost<W, C> where
    C: UnwindSafe,
    W: 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, 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> Same<T> for T

type Output = T

Should always be Self

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.