pub struct Range<T> { /* private fields */ }Expand description
Represents a range of values.
Implementations§
Source§impl<T> Range<T>where
    T: PartialOrd + Normalizable,
 
impl<T> Range<T>where
    T: PartialOrd + Normalizable,
Sourcepub fn new(
    lower: Option<RangeBound<LowerBound, T>>,
    upper: Option<RangeBound<UpperBound, T>>,
) -> Range<T>
 
pub fn new( lower: Option<RangeBound<LowerBound, T>>, upper: Option<RangeBound<UpperBound, T>>, ) -> Range<T>
Creates a new range.
If a bound is None, the range is unbounded in that direction.
Sourcepub fn lower(&self) -> Option<&RangeBound<LowerBound, T>>
 
pub fn lower(&self) -> Option<&RangeBound<LowerBound, T>>
Returns the lower bound if it exists.
Sourcepub fn upper(&self) -> Option<&RangeBound<UpperBound, T>>
 
pub fn upper(&self) -> Option<&RangeBound<UpperBound, T>>
Returns the upper bound if it exists.
Sourcepub fn contains_range(&self, other: &Range<T>) -> bool
 
pub fn contains_range(&self, other: &Range<T>) -> bool
Determines if a range lies completely within this range.
Trait Implementations§
Source§impl<'a, T> FromSql<'a> for Range<T>
 
impl<'a, T> FromSql<'a> for Range<T>
Source§fn from_sql(
    ty: &Type,
    raw: &'a [u8],
) -> Result<Range<T>, Box<dyn Error + Sync + Send>>
 
fn from_sql( ty: &Type, raw: &'a [u8], ) -> Result<Range<T>, Box<dyn Error + Sync + Send>>
Creates a new value of this type from a buffer of data of the specified
Postgres 
Type in its binary format. Read moreSource§fn accepts(ty: &Type) -> bool
 
fn accepts(ty: &Type) -> bool
Determines if a value of this type can be created from the specified
Postgres 
Type.Source§impl<T> ToSql for Range<T>
 
impl<T> ToSql for Range<T>
Source§fn to_sql(
    &self,
    ty: &Type,
    buf: &mut BytesMut,
) -> Result<IsNull, Box<dyn Error + Sync + Send>>
 
fn to_sql( &self, ty: &Type, buf: &mut BytesMut, ) -> Result<IsNull, Box<dyn Error + Sync + Send>>
Converts the value of 
self into the binary format of the specified
Postgres Type, appending it to out. Read moreSource§fn accepts(ty: &Type) -> bool
 
fn accepts(ty: &Type) -> bool
Determines if a value of this type can be converted to the specified
Postgres 
Type.Source§fn to_sql_checked(
    &self,
    ty: &Type,
    out: &mut BytesMut,
) -> Result<IsNull, Box<dyn Error + Sync + Send>>
 
fn to_sql_checked( &self, ty: &Type, out: &mut BytesMut, ) -> Result<IsNull, Box<dyn Error + Sync + Send>>
An adaptor method used internally by Rust-Postgres. Read more
Source§fn encode_format(&self, _ty: &Type) -> Format
 
fn encode_format(&self, _ty: &Type) -> Format
Specify the encode format
impl<T: Copy> Copy for Range<T>
impl<T: Eq> Eq for Range<T>
impl<T> StructuralPartialEq for Range<T>
Auto Trait Implementations§
impl<T> Freeze for Range<T>where
    T: Freeze,
impl<T> RefUnwindSafe for Range<T>where
    T: RefUnwindSafe,
impl<T> Send for Range<T>where
    T: Send,
impl<T> Sync for Range<T>where
    T: Sync,
impl<T> Unpin for Range<T>where
    T: Unpin,
impl<T> UnwindSafe for Range<T>where
    T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> BorrowToSql for Twhere
    T: ToSql,
 
impl<T> BorrowToSql for Twhere
    T: ToSql,
Source§fn borrow_to_sql(&self) -> &dyn ToSql
 
fn borrow_to_sql(&self) -> &dyn ToSql
Returns a reference to 
self as a ToSql trait object.