Struct postgres_array::Dimension [] [src]

pub struct Dimension {
    pub len: i32,
    pub lower_bound: i32,
}

Information about a dimension of an array.

Fields

The length of the dimension.

The index of the first element of the dimension.

Trait Implementations

impl Debug for Dimension
[src]

Formats the value using the given formatter.

impl Clone for Dimension
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Dimension
[src]

impl PartialEq for Dimension
[src]

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

This method tests for !=.

impl Eq for Dimension
[src]