[][src]Trait euca::app::detach::Detach

pub trait Detach<Message> {
    fn detach(&self);
}

Detach an app from the DOM.

Required methods

fn detach(&self)

Detach an app from the DOM.

Loading content...

Implementations on Foreign Types

impl<Message, Command> Detach<Message> for Rc<RefCell<Box<dyn Application<Message, Command>>>> where
    Message: Debug + Clone + PartialEq,
    Command: SideEffect<Message>, 
[src]

fn detach(&self)[src]

Detach the app from the dom.

Any elements that were created will be destroyed and event handlers will be removed.

Loading content...

Implementors

Loading content...