Struct postgres_protocol::types::Array [] [src]

pub struct Array<'a> {
    // some fields omitted
}
[]

A Postgres array.

Methods

impl<'a> Array<'a>
[src]

fn has_nulls(&self) -> bool[]

Returns true if there are NULL elements.

fn element_type(&self) -> Oid[]

Returns the OID of the elements of the array.

fn dimensions(&self) -> ArrayDimensions<'a>[]

Returns an iterator over the dimensions of the array.

fn values(&self) -> ArrayValues<'a>[]

Returns an iterator over the values of the array.