Struct pg_query::ast::WindowDef[][src]

pub struct WindowDef {
    pub name: Option<String>,
    pub refname: Option<String>,
    pub partition_clause: Option<Vec<Node>>,
    pub order_clause: Option<Vec<Node>>,
    pub frame_options: i32,
    pub start_offset: Option<Box<Node>>,
    pub end_offset: Option<Box<Node>>,
    pub location: i32,
}

Fields

name: Option<String>refname: Option<String>partition_clause: Option<Vec<Node>>order_clause: Option<Vec<Node>>frame_options: i32start_offset: Option<Box<Node>>end_offset: Option<Box<Node>>location: i32

Trait Implementations

impl Debug for WindowDef[src]

impl<'de> Deserialize<'de> for WindowDef[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.