[][src]Struct postgres_parser::nodes::MultiAssignRef

pub struct MultiAssignRef {
    pub source: Option<Box<Node>>,
    pub colno: i32,
    pub ncolumns: i32,
}

MultiAssignRef element of a row source expression for UPDATE

In an UPDATE target list, when we have SET (a,b,c) = rowvaluedexpression, we generate separate ResTarget items for each of a,b,c. Their "val" trees are MultiAssignRef nodes numbered 1..n, linking to a common copy of the rowvaluedexpression (which parse analysis will process only once, when handling the MultiAssignRef with colno=1).

Fields

source: Option<Box<Node>>colno: i32ncolumns: i32

Trait Implementations

impl Debug for MultiAssignRef[src]

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

impl Eq for MultiAssignRef[src]

impl PartialEq<MultiAssignRef> for MultiAssignRef[src]

impl Serialize for MultiAssignRef[src]

impl StructuralEq for MultiAssignRef[src]

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