Struct postgres_protocol::types::Array
[−]
[src]
pub struct Array<'a> { /* fields omitted */ }A Postgres array.
Methods
impl<'a> Array<'a>[src]
fn has_nulls(&self) -> bool[src]
Returns true if there are NULL elements.
fn element_type(&self) -> Oid[src]
Returns the OID of the elements of the array.
fn dimensions(&self) -> ArrayDimensions<'a>[src]
Returns an iterator over the dimensions of the array.
fn values(&self) -> ArrayValues<'a>[src]
Returns an iterator over the values of the array.