Enum postgres_range::BoundType [−][src]
pub enum BoundType {
Inclusive,
Exclusive,
}The type of a range bound.
Variants
InclusiveThe bound includes its value.
ExclusiveThe bound excludes its value.
Trait Implementations
impl Debug for BoundType[src]
impl Debug for BoundTypefn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl PartialEq for BoundType[src]
impl PartialEq for BoundTypefn eq(&self, other: &BoundType) -> bool[src]
fn eq(&self, other: &BoundType) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> bool1.0.0
[src]This method tests for !=.
impl Eq for BoundType[src]
impl Eq for BoundTypeimpl Clone for BoundType[src]
impl Clone for BoundTypefn clone(&self) -> BoundType[src]
fn clone(&self) -> BoundTypeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for BoundType[src]
impl Copy for BoundType