[][src]Enum postgres_parser::sys::WCOKind

#[repr(u32)]pub enum WCOKind {
    WCO_VIEW_CHECK,
    WCO_RLS_INSERT_CHECK,
    WCO_RLS_UPDATE_CHECK,
    WCO_RLS_CONFLICT_CHECK,
}

WithCheckOption representation of WITH CHECK OPTION checks to be applied to new tuples when inserting/updating an autoupdatable view, or RLS WITH CHECK policies to be applied when inserting/updating a relation with RLS.

Variants

WCO_VIEW_CHECK
WCO_RLS_INSERT_CHECK

WCO on an autoupdatable view

WCO_RLS_UPDATE_CHECK

RLS INSERT WITH CHECK policy

WCO_RLS_CONFLICT_CHECK

RLS UPDATE WITH CHECK policy

Trait Implementations

impl Clone for WCOKind[src]

impl Copy for WCOKind[src]

impl Debug for WCOKind[src]

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

impl Eq for WCOKind[src]

impl Hash for WCOKind[src]

impl PartialEq<WCOKind> for WCOKind[src]

impl Serialize for WCOKind[src]

impl StructuralEq for WCOKind[src]

impl StructuralPartialEq for WCOKind[src]

Auto Trait Implementations

impl RefUnwindSafe for WCOKind

impl Send for WCOKind

impl Sync for WCOKind

impl Unpin for WCOKind

impl UnwindSafe for WCOKind

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.