Struct postgres_protocol::types::ArrayDimension
[−]
[src]
pub struct ArrayDimension { pub len: i32, pub lower_bound: i32, }
Information about a dimension of an array.
Fields
len: i32
The length of this dimension.
lower_bound: i32
The base value used to index into this dimension.
Trait Implementations
impl Debug for ArrayDimension
[src]
impl Copy for ArrayDimension
[src]
impl Clone for ArrayDimension
[src]
fn clone(&self) -> ArrayDimension
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for ArrayDimension
[src]
fn eq(&self, __arg_0: &ArrayDimension) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ArrayDimension) -> bool
[src]
This method tests for !=
.