pub fn circulate_window<Conn>(
conn: &Conn,
direction: Circulate,
window: Window,
) -> Result<VoidCookie<'_, Conn>, ConnectionError>where
Conn: RequestConnection + ?Sized,Expand description
Change window stacking order.
If direction is XCB_CIRCULATE_RAISE_LOWEST, the lowest mapped child (if
any) will be raised to the top of the stack.
If direction is XCB_CIRCULATE_LOWER_HIGHEST, the highest mapped child will
be lowered to the bottom of the stack.
§Fields
direction-window- The window to raise/lower (depending ondirection).
§Errors
Window- The specifiedwindowdoes not exist.Value- The specifieddirectionis invalid.