Fields
start: Bound<T>
end: Bound<T>
Trait Implementations
sourceimpl<'r, T> Decode<'r, Postgres> for PgRange<T> where
T: Type<Postgres> + for<'a> Decode<'a, Postgres>,
impl<'r, T> Decode<'r, Postgres> for PgRange<T> where
T: Type<Postgres> + for<'a> Decode<'a, Postgres>,
sourceimpl<'q, T> Encode<'q, Postgres> for PgRange<T> where
T: Encode<'q, Postgres>,
impl<'q, T> Encode<'q, Postgres> for PgRange<T> where
T: Encode<'q, Postgres>,
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl<T> From<RangeInclusive<T>> for PgRange<T>
impl<T> From<RangeInclusive<T>> for PgRange<T>
sourcefn from(v: RangeInclusive<T>) -> PgRange<T>
fn from(v: RangeInclusive<T>) -> PgRange<T>
Converts to this type from the input type.
sourceimpl<T> From<RangeToInclusive<T>> for PgRange<T>
impl<T> From<RangeToInclusive<T>> for PgRange<T>
sourcefn from(v: RangeToInclusive<T>) -> PgRange<T>
fn from(v: RangeToInclusive<T>) -> PgRange<T>
Converts to this type from the input type.
sourceimpl PgHasArrayType for PgRange<i32>
impl PgHasArrayType for PgRange<i32>
fn array_type_info() -> PgTypeInfo
fn array_compatible(ty: &PgTypeInfo) -> bool
sourceimpl PgHasArrayType for PgRange<i64>
impl PgHasArrayType for PgRange<i64>
fn array_type_info() -> PgTypeInfo
fn array_compatible(ty: &PgTypeInfo) -> bool
sourceimpl<T> RangeBounds<T> for PgRange<T>
impl<T> RangeBounds<T> for PgRange<T>
sourceimpl Type<Postgres> for PgRange<i64>
impl Type<Postgres> for PgRange<i64>
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for PgRange<i32>
impl Type<Postgres> for PgRange<i32>
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
impl<T> Eq for PgRange<T> where
T: Eq,
impl<T> StructuralEq for PgRange<T>
impl<T> StructuralPartialEq for PgRange<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for PgRange<T> where
T: RefUnwindSafe,
impl<T> Send for PgRange<T> where
T: Send,
impl<T> Sync for PgRange<T> where
T: Sync,
impl<T> Unpin for PgRange<T> where
T: Unpin,
impl<T> UnwindSafe for PgRange<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.