pub struct Windows {
pub windows: Vec<NamedWindow>,
}Expand description
WINDOW w AS (…), v AS (…)
Fields§
§windows: Vec<NamedWindow>The named windows, in order. A later one may be
based_on an earlier one.
Implementations§
Source§impl Windows
impl Windows
Sourcepub fn append_window(&mut self, window: NamedWindow)
pub fn append_window(&mut self, window: NamedWindow)
Append a named window.
Trait Implementations§
Source§impl Expression for Windows
impl Expression for Windows
Source§impl HasWindows for Windows
impl HasWindows for Windows
Source§fn windows_mut(&mut self) -> &mut Windows
fn windows_mut(&mut self) -> &mut Windows
The
WINDOW clause to modify.Auto Trait Implementations§
impl !RefUnwindSafe for Windows
impl !UnwindSafe for Windows
impl Freeze for Windows
impl Send for Windows
impl Sync for Windows
impl Unpin for Windows
impl UnsafeUnpin for Windows
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more