usecrate::display::*;/// Represents a window. For browser applications, there can only be
/// a single `Window` object.
pubstructWindow{pub(crate)root: DisplayObject,
}implWindow{/// Returns the root display object of the window.
pubfnroot(&self)-> DisplayObject{self.root.clone()}}