Trait stdweb::traits::IWindowOrWorker [] [src]

pub trait IWindowOrWorker: ReferenceType {
    fn set_timeout<F: FnOnce() + 'static>(&self, callback: F, timeout: u32) { ... }
}

The IWindowOrWorker mixin describes several features common to the Window and the global scope of web workers.

You most likely don't want to use this directly; instead you should use stdweb::traits::*;.

(JavaScript docs)

Provided Methods

Sets a timer which executes a function once after the timer expires.

(JavaScript docs)

Implementors