Struct postgres::Column [] [src]

pub struct Column {
    // some fields omitted
}

Information about a column of the result of a query.

Methods

impl Column
[src]

fn name(&self) -> &str

The name of the column.

fn type_(&self) -> &Type

The type of the data in the column.

Trait Implementations

impl Debug for Column
[src]

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

Formats the value using the given formatter.

impl Clone for Column
[src]

fn clone(&self) -> Column

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Eq for Column
[src]

impl PartialEq for Column
[src]

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

This method tests for self and other values to be equal, and is used by ==. Read more

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

This method tests for !=.