pub struct NamedWindow {
pub name: Cow<'static, str>,
pub definition: Window,
}Expand description
name AS (<definition>) — one entry of a statement’s WINDOW clause.
Fields§
§name: Cow<'static, str>The name, quoted on output.
definition: WindowWhat the name means.
Implementations§
Trait Implementations§
Source§impl Clone for NamedWindow
impl Clone for NamedWindow
Source§fn clone(&self) -> NamedWindow
fn clone(&self) -> NamedWindow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NamedWindow
impl Debug for NamedWindow
Source§impl Default for NamedWindow
impl Default for NamedWindow
Source§fn default() -> NamedWindow
fn default() -> NamedWindow
Returns the “default value” for a type. Read more
Source§impl Expression for NamedWindow
impl Expression for NamedWindow
Source§impl HasWindow for NamedWindow
impl HasWindow for NamedWindow
Source§fn window_mut(&mut self) -> &mut Window
fn window_mut(&mut self) -> &mut Window
The window definition to modify.
Auto Trait Implementations§
impl !RefUnwindSafe for NamedWindow
impl !UnwindSafe for NamedWindow
impl Freeze for NamedWindow
impl Send for NamedWindow
impl Sync for NamedWindow
impl Unpin for NamedWindow
impl UnsafeUnpin for NamedWindow
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