diesel::sql_types

Struct Multirange

source
pub struct Multirange<ST: 'static>(/* private fields */);
Available on crate feature postgres_backend only.
Expand description

The Multirange SQL type.

This wraps another type to represent a SQL range of that type.

§ToSql impls

  • Vec<T> for any T which Range<T> implements ToSql<ST>
  • &[T] for any T which Range<T> implements ToSql<ST>

§FromSql impls

  • Vec<T> for any T which implements ToSql<Range<ST>>

Trait Implementations§

source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b [(Bound<T>, Bound<T>)]

source§

type Expression = Bound<Multirange<ST>, &'a &'b [(Bound<T>, Bound<T>)]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b [Range<T>]

source§

type Expression = Bound<Multirange<ST>, &'a &'b [Range<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b [RangeFrom<T>]

source§

type Expression = Bound<Multirange<ST>, &'a &'b [RangeFrom<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b [RangeInclusive<T>]

source§

type Expression = Bound<Multirange<ST>, &'a &'b [RangeInclusive<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b [RangeTo<T>]

source§

type Expression = Bound<Multirange<ST>, &'a &'b [RangeTo<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b [RangeToInclusive<T>]

source§

type Expression = Bound<Multirange<ST>, &'a &'b [RangeToInclusive<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b Vec<(Bound<T>, Bound<T>)>

source§

type Expression = Bound<Multirange<ST>, &'a &'b Vec<(Bound<T>, Bound<T>)>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b Vec<Range<T>>

source§

type Expression = Bound<Multirange<ST>, &'a &'b Vec<Range<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b Vec<RangeFrom<T>>

source§

type Expression = Bound<Multirange<ST>, &'a &'b Vec<RangeFrom<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b Vec<RangeInclusive<T>>

source§

type Expression = Bound<Multirange<ST>, &'a &'b Vec<RangeInclusive<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b Vec<RangeTo<T>>

source§

type Expression = Bound<Multirange<ST>, &'a &'b Vec<RangeTo<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a &'b Vec<RangeToInclusive<T>>

source§

type Expression = Bound<Multirange<ST>, &'a &'b Vec<RangeToInclusive<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a [(Bound<T>, Bound<T>)]

source§

type Expression = Bound<Multirange<ST>, &'a [(Bound<T>, Bound<T>)]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a [Range<T>]

source§

type Expression = Bound<Multirange<ST>, &'a [Range<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a [RangeFrom<T>]

source§

type Expression = Bound<Multirange<ST>, &'a [RangeFrom<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a [RangeInclusive<T>]

source§

type Expression = Bound<Multirange<ST>, &'a [RangeInclusive<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a [RangeTo<T>]

source§

type Expression = Bound<Multirange<ST>, &'a [RangeTo<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a [RangeToInclusive<T>]

source§

type Expression = Bound<Multirange<ST>, &'a [RangeToInclusive<T>]>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a Vec<(Bound<T>, Bound<T>)>

source§

type Expression = Bound<Multirange<ST>, &'a Vec<(Bound<T>, Bound<T>)>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a Vec<Range<T>>

source§

type Expression = Bound<Multirange<ST>, &'a Vec<Range<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a Vec<RangeFrom<T>>

source§

type Expression = Bound<Multirange<ST>, &'a Vec<RangeFrom<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a Vec<RangeInclusive<T>>

source§

type Expression = Bound<Multirange<ST>, &'a Vec<RangeInclusive<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a Vec<RangeTo<T>>

source§

type Expression = Bound<Multirange<ST>, &'a Vec<RangeTo<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for &'a Vec<RangeToInclusive<T>>

source§

type Expression = Bound<Multirange<ST>, &'a Vec<RangeToInclusive<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for Vec<(Bound<T>, Bound<T>)>

source§

type Expression = Bound<Multirange<ST>, Vec<(Bound<T>, Bound<T>)>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for Vec<Range<T>>

source§

type Expression = Bound<Multirange<ST>, Vec<Range<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for Vec<RangeFrom<T>>

source§

type Expression = Bound<Multirange<ST>, Vec<RangeFrom<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for Vec<RangeInclusive<T>>

source§

type Expression = Bound<Multirange<ST>, Vec<RangeInclusive<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for Vec<RangeTo<T>>

source§

type Expression = Bound<Multirange<ST>, Vec<RangeTo<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<'a, 'b, ST: 'static, T> AsExpression<Multirange<ST>> for Vec<RangeToInclusive<T>>

source§

type Expression = Bound<Multirange<ST>, Vec<RangeToInclusive<T>>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

impl<ST: Clone + 'static> Clone for Multirange<ST>

source§

fn clone(&self) -> Multirange<ST>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<ST: Debug + 'static> Debug for Multirange<ST>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<ST: Default + 'static> Default for Multirange<ST>

source§

fn default() -> Multirange<ST>

Returns the “default value” for a type. Read more
source§

impl<T, ST> FromSql<Multirange<ST>, Pg> for Vec<(Bound<T>, Bound<T>)>
where T: FromSql<ST, Pg> + Defaultable,

source§

fn from_sql(value: PgValue<'_>) -> Result<Self>

See the trait documentation.
source§

fn from_nullable_sql(bytes: Option<DB::RawValue<'_>>) -> Result<Self>

A specialized variant of from_sql for handling null values. Read more
source§

impl HasSqlType<Multirange<BigInt>> for Pg

source§

fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Multirange<Date>> for Pg

source§

fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Multirange<Integer>> for Pg

source§

fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Multirange<Numeric>> for Pg

source§

fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Multirange<Timestamp>> for Pg

source§

fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata

Fetch the metadata for the given type Read more
source§

impl HasSqlType<Multirange<Timestamptz>> for Pg

source§

fn metadata(_: &mut Self::MetadataLookup) -> PgTypeMetadata

Fetch the metadata for the given type Read more
source§

impl<ST: 'static + QueryId> QueryId for Multirange<ST>

source§

const HAS_STATIC_QUERY_ID: bool = _

Can the SQL generated by Self be uniquely identified by its type? Read more
source§

type QueryId = Multirange<<ST as QueryId>::QueryId>

A type which uniquely represents Self in a SQL query. Read more
source§

fn query_id() -> Option<TypeId>

Returns the type id of Self::QueryId if Self::HAS_STATIC_QUERY_ID. Returns None otherwise. Read more
source§

impl<ST: 'static> SqlType for Multirange<ST>

source§

type IsNull = NotNull

Is this type nullable? Read more
source§

impl<T, ST> ToSql<Multirange<ST>, Pg> for [(Bound<T>, Bound<T>)]
where T: ToSql<ST, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<ST, T> ToSql<Multirange<ST>, Pg> for [Range<T>]
where ST: 'static, T: ToSql<ST, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<ST, T> ToSql<Multirange<ST>, Pg> for [RangeFrom<T>]
where ST: 'static, T: ToSql<ST, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<ST, T> ToSql<Multirange<ST>, Pg> for [RangeInclusive<T>]
where ST: 'static, T: ToSql<ST, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<ST, T> ToSql<Multirange<ST>, Pg> for [RangeTo<T>]
where ST: 'static, T: ToSql<ST, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<ST, T> ToSql<Multirange<ST>, Pg> for [RangeToInclusive<T>]
where ST: 'static, T: ToSql<ST, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T, ST> ToSql<Multirange<ST>, Pg> for Vec<(Bound<T>, Bound<T>)>
where T: ToSql<ST, Pg>, [(Bound<T>, Bound<T>)]: ToSql<Multirange<ST>, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T, ST> ToSql<Multirange<ST>, Pg> for Vec<Range<T>>
where T: ToSql<ST, Pg>, [Range<T>]: ToSql<Multirange<ST>, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T, ST> ToSql<Multirange<ST>, Pg> for Vec<RangeFrom<T>>
where T: ToSql<ST, Pg>, [RangeFrom<T>]: ToSql<Multirange<ST>, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T, ST> ToSql<Multirange<ST>, Pg> for Vec<RangeInclusive<T>>
where T: ToSql<ST, Pg>, [RangeInclusive<T>]: ToSql<Multirange<ST>, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T, ST> ToSql<Multirange<ST>, Pg> for Vec<RangeTo<T>>
where T: ToSql<ST, Pg>, [RangeTo<T>]: ToSql<Multirange<ST>, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<T, ST> ToSql<Multirange<ST>, Pg> for Vec<RangeToInclusive<T>>
where T: ToSql<ST, Pg>, [RangeToInclusive<T>]: ToSql<Multirange<ST>, Pg>,

source§

fn to_sql<'b>(&'b self, out: &mut Output<'b, '_, Pg>) -> Result

See the trait documentation.
source§

impl<ST: Copy + 'static> Copy for Multirange<ST>

source§

impl<ST: 'static> SingleValue for Multirange<ST>

Auto Trait Implementations§

§

impl<ST> Freeze for Multirange<ST>
where ST: Freeze,

§

impl<ST> RefUnwindSafe for Multirange<ST>
where ST: RefUnwindSafe,

§

impl<ST> Send for Multirange<ST>
where ST: Send,

§

impl<ST> Sync for Multirange<ST>
where ST: Sync,

§

impl<ST> Unpin for Multirange<ST>
where ST: Unpin,

§

impl<ST> UnwindSafe for Multirange<ST>
where ST: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<ST, U, DB> CompatibleType<U, DB> for ST
where DB: Backend, ST: SqlType + SingleValue, U: FromSqlRow<ST, DB>,

source§

type SqlType = ST

Available on crate feature i-implement-a-third-party-backend-and-opt-into-breaking-changes only.
source§

impl<T> Downcast for T
where T: Any,

source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoNotNullable for T
where T: SqlType<IsNull = NotNull>,

source§

type NotNullable = T

The not nullable representation of this type. Read more
source§

impl<T> IntoNullable for T
where T: SqlType<IsNull = NotNull> + SingleValue,

source§

type Nullable = Nullable<T>

The nullable representation of this type. Read more
source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> AsExprOf<Self, T>

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>
where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<ST> TypedExpressionType for ST
where ST: SingleValue,