[][src]Struct postgres_parser::nodes::WindowFunc

pub struct WindowFunc {
    pub winfnoid: Oid,
    pub wintype: Oid,
    pub wincollid: Oid,
    pub inputcollid: Oid,
    pub args: Option<Vec<Node>>,
    pub aggfilter: Option<Box<Expr>>,
    pub winref: Index,
    pub winstar: bool,
    pub winagg: bool,
    pub location: i32,
}

WindowFunc

Fields

winfnoid: Oidwintype: Oidwincollid: Oidinputcollid: Oidargs: Option<Vec<Node>>aggfilter: Option<Box<Expr>>winref: Indexwinstar: boolwinagg: boollocation: i32

Trait Implementations

impl Debug for WindowFunc[src]

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

impl Eq for WindowFunc[src]

impl PartialEq<WindowFunc> for WindowFunc[src]

impl Serialize for WindowFunc[src]

impl StructuralEq for WindowFunc[src]

impl StructuralPartialEq for WindowFunc[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.