Struct diesel::sql_types::Array

source ·
pub struct Array<ST: 'static>(_);
Available on crate feature postgres_backend only.
Expand description

The Array SQL type.

This wraps another type to represent a SQL array of that type. Multidimensional arrays are not supported.

ToSql impls

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

FromSql impls

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

Trait Implementations§

source§

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

§

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

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

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

§

type Expression = Bound<Array<ST>, &'a &'b Vec<T, Global>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

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

§

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

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

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

§

type Expression = Bound<Array<ST>, &'a Vec<T, Global>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

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

§

type Expression = Bound<Array<ST>, Vec<T, Global>>

The expression being returned
source§

fn as_expression(self) -> Self::Expression

Perform the conversion
source§

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

source§

fn clone(&self) -> Array<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 Array<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 Array<ST>

source§

fn default() -> Array<ST>

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

impl<T, ST> FromSql<Array<ST>, Pg> for Vec<T>where T: FromSql<ST, Pg>,

source§

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

See the trait documentation.
source§

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

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

impl<T> HasSqlType<Array<T>> for Pgwhere Pg: HasSqlType<T>,

source§

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

Fetch the metadata for the given type Read more
source§

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

§

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

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

const HAS_STATIC_QUERY_ID: bool = _

Can the SQL generated by Self be uniquely identified by its type? 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 Array<ST>

§

type IsNull = NotNull

Is this type nullable? Read more
source§

impl<ST, T> ToSql<Array<ST>, Pg> for [T]where Pg: HasSqlType<ST>, 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<Array<ST>, Pg> for Vec<T>where ST: 'static, [T]: ToSql<Array<ST>, Pg>, T: Debug,

source§

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

See the trait documentation.
source§

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

source§

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

source§

impl<T: SqlOrd> SqlOrd for Array<T>

Available on crate feature postgres only.

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere T: SqlType<IsNull = NotNull>,

§

type NotNullable = T

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

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

§

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>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,

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 Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

source§

fn vzip(self) -> V

source§

impl<ST> TypedExpressionType for STwhere ST: SingleValue,