Enum postgres::types::Kind [] [src]

pub enum Kind {
    Simple,
    Array(Type),
    Range(Type),
}

Represents the kind of a Postgres type.

Variants

Simple

A simple type like VARCHAR or INTEGER.

Array

An array type along with the type of its elements.

Range

A range type along with the type of its elements.

Trait Implementations

Derived Implementations

impl Eq for Kind

impl PartialEq for Kind

fn eq(&self, __arg_0: &Kind) -> bool

fn ne(&self, __arg_0: &Kind) -> bool

impl Clone for Kind

fn clone(&self) -> Kind

fn clone_from(&mut self, source: &Self)

impl Debug for Kind

fn fmt(&self, __arg_0: &mut Formatter) -> Result