[][src]Struct postgres_parser::nodes::TableSampleClause

pub struct TableSampleClause {
    pub tsmhandler: Oid,
    pub args: Option<Vec<Node>>,
    pub repeatable: Option<Box<Expr>>,
}

TableSampleClause TABLESAMPLE appearing in a transformed FROM clause

Unlike RangeTableSample, this is a subnode of the relevant RangeTblEntry.

Fields

tsmhandler: Oidargs: Option<Vec<Node>>repeatable: Option<Box<Expr>>

Trait Implementations

impl Debug for TableSampleClause[src]

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

impl Eq for TableSampleClause[src]

impl PartialEq<TableSampleClause> for TableSampleClause[src]

impl Serialize for TableSampleClause[src]

impl StructuralEq for TableSampleClause[src]

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