[][src]Enum postgres_parser::sys::PartitionRangeDatumKind

#[repr(u32)]pub enum PartitionRangeDatumKind {
    PARTITION_RANGE_DATUM_MINVALUE,
    PARTITION_RANGE_DATUM_VALUE,
}

PartitionRangeDatum one of the values in a range partition bound

This can be MINVALUE, MAXVALUE or a specific bounded value.

Variants

PARTITION_RANGE_DATUM_MINVALUE
PARTITION_RANGE_DATUM_VALUE

less than any other value

Implementations

impl PartitionRangeDatumKind[src]

Trait Implementations

impl Clone for PartitionRangeDatumKind[src]

impl Copy for PartitionRangeDatumKind[src]

impl Debug for PartitionRangeDatumKind[src]

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

impl Eq for PartitionRangeDatumKind[src]

impl Hash for PartitionRangeDatumKind[src]

impl PartialEq<PartitionRangeDatumKind> for PartitionRangeDatumKind[src]

impl Serialize for PartitionRangeDatumKind[src]

impl StructuralEq for PartitionRangeDatumKind[src]

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