Value

Enum Value 

Source
pub enum Value {
Show 37 variants Bool(Option<bool>), TinyInt(Option<i8>), SmallInt(Option<i16>), Int(Option<i32>), BigInt(Option<i64>), TinyUnsigned(Option<u8>), SmallUnsigned(Option<u16>), Unsigned(Option<u32>), BigUnsigned(Option<u64>), Float(Option<f32>), Double(Option<f64>), String(Option<String>), Char(Option<char>), Bytes(Option<Vec<u8>>), Json(Option<Value>), ChronoDate(Option<NaiveDate>), ChronoTime(Option<NaiveTime>), ChronoDateTime(Option<NaiveDateTime>), ChronoDateTimeUtc(Option<DateTime<Utc>>), ChronoDateTimeLocal(Option<DateTime<Local>>), ChronoDateTimeWithTimeZone(Option<DateTime<FixedOffset>>), TimeDate(Option<Date>), TimeTime(Option<Time>), TimeDateTime(Option<PrimitiveDateTime>), TimeDateTimeWithTimeZone(Option<OffsetDateTime>), JiffDate(Option<Date>), JiffTime(Option<Time>), JiffDateTime(Option<Box<DateTime>>), JiffTimestamp(Option<Box<Timestamp>>), JiffZoned(Option<Box<Zoned>>), Uuid(Option<Uuid>), Decimal(Option<Decimal>), BigDecimal(Option<Box<BigDecimal>>), Array(ArrayType, Option<Box<Vec<Value>>>), Vector(Option<Vector>), IpNetwork(Option<IpNetwork>), MacAddress(Option<MacAddress>),
}
Expand description

Value variants

We want the inner Value to be exactly 1 pointer sized, so anything larger should be boxed.

If the hashable-value feature is enabled, NaN == NaN, which contradicts Rustโ€™s built-in implementation of NaN != NaN.

Variantsยง

ยง

Bool(Option<bool>)

ยง

TinyInt(Option<i8>)

ยง

SmallInt(Option<i16>)

ยง

Int(Option<i32>)

ยง

BigInt(Option<i64>)

ยง

TinyUnsigned(Option<u8>)

ยง

SmallUnsigned(Option<u16>)

ยง

Unsigned(Option<u32>)

ยง

BigUnsigned(Option<u64>)

ยง

Float(Option<f32>)

ยง

Double(Option<f64>)

ยง

String(Option<String>)

ยง

Char(Option<char>)

ยง

Bytes(Option<Vec<u8>>)

ยง

Json(Option<Value>)

Available on crate feature with-json only.
ยง

ChronoDate(Option<NaiveDate>)

Available on crate feature with-chrono only.
ยง

ChronoTime(Option<NaiveTime>)

Available on crate feature with-chrono only.
ยง

ChronoDateTime(Option<NaiveDateTime>)

Available on crate feature with-chrono only.
ยง

ChronoDateTimeUtc(Option<DateTime<Utc>>)

Available on crate feature with-chrono only.
ยง

ChronoDateTimeLocal(Option<DateTime<Local>>)

Available on crate feature with-chrono only.
ยง

ChronoDateTimeWithTimeZone(Option<DateTime<FixedOffset>>)

Available on crate feature with-chrono only.
ยง

TimeDate(Option<Date>)

Available on crate feature with-time only.
ยง

TimeTime(Option<Time>)

Available on crate feature with-time only.
ยง

TimeDateTime(Option<PrimitiveDateTime>)

Available on crate feature with-time only.
ยง

TimeDateTimeWithTimeZone(Option<OffsetDateTime>)

Available on crate feature with-time only.
ยง

JiffDate(Option<Date>)

Available on crate feature with-jiff only.
ยง

JiffTime(Option<Time>)

Available on crate feature with-jiff only.
ยง

JiffDateTime(Option<Box<DateTime>>)

Available on crate feature with-jiff only.
ยง

JiffTimestamp(Option<Box<Timestamp>>)

Available on crate feature with-jiff only.
ยง

JiffZoned(Option<Box<Zoned>>)

Available on crate feature with-jiff only.
ยง

Uuid(Option<Uuid>)

Available on crate feature with-uuid only.
ยง

Decimal(Option<Decimal>)

Available on crate feature with-rust_decimal only.
ยง

BigDecimal(Option<Box<BigDecimal>>)

Available on crate feature with-bigdecimal only.
ยง

Array(ArrayType, Option<Box<Vec<Value>>>)

Available on crate feature postgres-array only.
ยง

Vector(Option<Vector>)

Available on crate feature postgres-vector only.
ยง

IpNetwork(Option<IpNetwork>)

Available on crate feature with-ipnetwork only.
ยง

MacAddress(Option<MacAddress>)

Available on crate feature with-mac_address only.

Implementationsยง

Sourceยง

impl Value

Source

pub fn is_json(&self) -> bool

Available on crate feature with-json only.
Source

pub fn as_ref_json(&self) -> Option<&Json>

Available on crate feature with-json only.
Sourceยง

impl Value

Source

pub fn is_chrono_date(&self) -> bool

Available on crate feature with-chrono only.
Source

pub fn is_chrono_time(&self) -> bool

Available on crate feature with-chrono only.
Source

pub fn is_chrono_date_time(&self) -> bool

Available on crate feature with-chrono only.
Source

pub fn is_chrono_date_time_utc(&self) -> bool

Available on crate feature with-chrono only.
Source

pub fn is_chrono_date_time_with_time_zone(&self) -> bool

Available on crate feature with-chrono only.
Source

pub fn is_chrono_date_time_local(&self) -> bool

Available on crate feature with-chrono only.
Source

pub fn as_ref_chrono_date(&self) -> Option<&NaiveDate>

Available on crate feature with-chrono only.
Source

pub fn as_ref_chrono_time(&self) -> Option<&NaiveTime>

Available on crate feature with-chrono only.
Source

pub fn as_ref_chrono_date_time(&self) -> Option<&NaiveDateTime>

Available on crate feature with-chrono only.
Source

pub fn as_ref_chrono_date_time_utc(&self) -> Option<&DateTime<Utc>>

Available on crate feature with-chrono only.
Source

pub fn as_ref_chrono_date_time_with_time_zone( &self, ) -> Option<&DateTime<FixedOffset>>

Available on crate feature with-chrono only.
Source

pub fn as_ref_chrono_date_time_local(&self) -> Option<&DateTime<Local>>

Available on crate feature with-chrono only.
Source

pub fn chrono_as_naive_utc_in_string(&self) -> Option<String>

Available on crate feature with-chrono only.
Sourceยง

impl Value

Source

pub fn is_time_date(&self) -> bool

Available on crate feature with-time only.
Source

pub fn as_ref_time_date(&self) -> Option<&Date>

Available on crate feature with-time only.
Sourceยง

impl Value

Source

pub fn is_time_time(&self) -> bool

Available on crate feature with-time only.
Source

pub fn as_ref_time_time(&self) -> Option<&Time>

Available on crate feature with-time only.
Sourceยง

impl Value

Source

pub fn is_time_date_time(&self) -> bool

Available on crate feature with-time only.
Source

pub fn as_ref_time_date_time(&self) -> Option<&PrimitiveDateTime>

Available on crate feature with-time only.
Sourceยง

impl Value

Source

pub fn is_time_date_time_with_time_zone(&self) -> bool

Available on crate feature with-time only.
Source

pub fn as_ref_time_date_time_with_time_zone(&self) -> Option<&OffsetDateTime>

Available on crate feature with-time only.
Sourceยง

impl Value

Source

pub fn time_as_naive_utc_in_string(&self) -> Option<String>

Available on crate feature with-time only.
Sourceยง

impl Value

Source

pub fn jiff_date<T: Into<Option<Date>>>(v: T) -> Value

Available on crate feature with-jiff only.
Source

pub fn jiff_time<T: Into<Option<Time>>>(v: T) -> Value

Available on crate feature with-jiff only.
Source

pub fn jiff_date_time<T: Into<Option<DateTime>>>(v: T) -> Value

Available on crate feature with-jiff only.
Source

pub fn jiff_timestamp<T: Into<Option<Timestamp>>>(v: T) -> Value

Available on crate feature with-jiff only.
Source

pub fn jiff_zoned<T: Into<Option<Zoned>>>(v: T) -> Value

Available on crate feature with-jiff only.
Sourceยง

impl Value

Source

pub fn is_jiff_date(&self) -> bool

Available on crate feature with-jiff only.
Source

pub fn is_jiff_time(&self) -> bool

Available on crate feature with-jiff only.
Source

pub fn is_jiff_date_time(&self) -> bool

Available on crate feature with-jiff only.
Source

pub fn is_jiff_timestamp(&self) -> bool

Available on crate feature with-jiff only.
Source

pub fn is_jiff_zoned(&self) -> bool

Available on crate feature with-jiff only.
Source

pub fn as_ref_jiff_date(&self) -> Option<&Date>

Available on crate feature with-jiff only.
Source

pub fn as_ref_jiff_time(&self) -> Option<&Time>

Available on crate feature with-jiff only.
Source

pub fn as_ref_jiff_date_time(&self) -> Option<&DateTime>

Available on crate feature with-jiff only.
Source

pub fn as_ref_jiff_timestamp(&self) -> Option<&Timestamp>

Available on crate feature with-jiff only.
Source

pub fn as_ref_jiff_zoned(&self) -> Option<&Zoned>

Available on crate feature with-jiff only.
Sourceยง

impl Value

Source

pub fn is_decimal(&self) -> bool

Available on crate feature with-rust_decimal only.
Source

pub fn as_ref_decimal(&self) -> Option<&Decimal>

Available on crate feature with-rust_decimal only.
Source

pub fn decimal_to_f64(&self) -> Option<f64>

Available on crate feature with-rust_decimal only.
Sourceยง

impl Value

Source

pub fn is_big_decimal(&self) -> bool

Available on crate feature with-bigdecimal only.
Source

pub fn as_ref_big_decimal(&self) -> Option<&BigDecimal>

Available on crate feature with-bigdecimal only.
Source

pub fn big_decimal_to_f64(&self) -> Option<f64>

Available on crate feature with-bigdecimal only.
Sourceยง

impl Value

Source

pub fn is_uuid(&self) -> bool

Available on crate feature with-uuid only.
Source

pub fn as_ref_uuid(&self) -> Option<&Uuid>

Available on crate feature with-uuid only.
Sourceยง

impl Value

Source

pub fn is_ipnetwork(&self) -> bool

Available on crate feature with-ipnetwork only.
Source

pub fn as_ref_ipnetwork(&self) -> Option<&IpNetwork>

Available on crate feature with-ipnetwork only.
Source

pub fn as_ipaddr(&self) -> Option<IpAddr>

Available on crate feature with-ipnetwork only.
Sourceยง

impl Value

Source

pub fn is_mac_address(&self) -> bool

Available on crate feature with-mac_address only.
Source

pub fn as_ref_mac_address(&self) -> Option<&MacAddress>

Available on crate feature with-mac_address only.
Sourceยง

impl Value

Source

pub fn is_array(&self) -> bool

Available on crate feature postgres-array only.
Source

pub fn as_ref_array(&self) -> Option<&Vec<Value>>

Available on crate feature postgres-array only.
Sourceยง

impl Value

Source

pub fn unwrap<T>(self) -> T
where T: ValueType,

Source

pub fn expect<T>(self, msg: &str) -> T
where T: ValueType,

Source

pub fn as_null(&self) -> Self

Get the null variant of self

use sea_query::Value;

let v = Value::Int(Some(2));
let n = v.as_null();

assert_eq!(n, Value::Int(None));

// one liner:
assert_eq!(Into::<Value>::into(2.2).as_null(), Value::Double(None));
Source

pub fn dummy_value(&self) -> Self

Get a default value of selfโ€™s type

use sea_query::Value;

let v = Value::Int(None);
let n = v.dummy_value();
assert_eq!(n, Value::Int(Some(0)));

Trait Implementationsยง

Sourceยง

impl Clone for Value

Sourceยง

fn clone(&self) -> Value

Returns a duplicate 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 Debug for Value

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl<'de> Deserialize<'de> for Value

Sourceยง

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Sourceยง

impl Display for Value

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl From<&[u8]> for Value

Sourceยง

fn from(x: &[u8]) -> Value

Converts to this type from the input type.
Sourceยง

impl From<&String> for Value

Sourceยง

fn from(x: &String) -> Value

Converts to this type from the input type.
Sourceยง

impl From<&str> for Value

Sourceยง

fn from(x: &str) -> Value

Converts to this type from the input type.
Sourceยง

impl From<BigDecimal> for Value

Available on crate feature with-bigdecimal only.
Sourceยง

fn from(x: BigDecimal) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Braced> for Value

Available on crate feature with-uuid only.
Sourceยง

fn from(x: Braced) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Cow<'_, str>> for Value

Sourceยง

fn from(x: Cow<'_, str>) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Date> for Value

Available on crate feature with-time only.
Sourceยง

fn from(x: Date) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Date> for Value

Available on crate feature with-jiff only.
Sourceยง

fn from(x: Date) -> Value

Converts to this type from the input type.
Sourceยง

impl From<DateTime<FixedOffset>> for Value

Available on crate feature with-chrono only.
Sourceยง

fn from(x: DateTime<FixedOffset>) -> Value

Converts to this type from the input type.
Sourceยง

impl From<DateTime<Local>> for Value

Available on crate feature with-chrono only.
Sourceยง

fn from(v: DateTime<Local>) -> Value

Converts to this type from the input type.
Sourceยง

impl From<DateTime<Utc>> for Value

Available on crate feature with-chrono only.
Sourceยง

fn from(v: DateTime<Utc>) -> Value

Converts to this type from the input type.
Sourceยง

impl From<DateTime> for Value

Available on crate feature with-jiff only.
Sourceยง

fn from(x: DateTime) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Decimal> for Value

Available on crate feature with-rust_decimal only.
Sourceยง

fn from(x: Decimal) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Hyphenated> for Value

Available on crate feature with-uuid only.
Sourceยง

fn from(x: Hyphenated) -> Value

Converts to this type from the input type.
Sourceยง

impl From<IpNetwork> for Value

Available on crate feature with-ipnetwork only.
Sourceยง

fn from(x: IpNetwork) -> Value

Converts to this type from the input type.
Sourceยง

impl From<MacAddress> for Value

Available on crate feature with-mac_address only.
Sourceยง

fn from(x: MacAddress) -> Value

Converts to this type from the input type.
Sourceยง

impl From<NaiveDate> for Value

Available on crate feature with-chrono only.
Sourceยง

fn from(x: NaiveDate) -> Value

Converts to this type from the input type.
Sourceยง

impl From<NaiveDateTime> for Value

Available on crate feature with-chrono only.
Sourceยง

fn from(x: NaiveDateTime) -> Value

Converts to this type from the input type.
Sourceยง

impl From<NaiveTime> for Value

Available on crate feature with-chrono only.
Sourceยง

fn from(x: NaiveTime) -> Value

Converts to this type from the input type.
Sourceยง

impl From<OffsetDateTime> for Value

Available on crate feature with-time only.
Sourceยง

fn from(v: OffsetDateTime) -> Value

Converts to this type from the input type.
Sourceยง

impl<T> From<Option<T>> for Value
where T: Into<Value> + Nullable,

Sourceยง

fn from(x: Option<T>) -> Value

Converts to this type from the input type.
Sourceยง

impl From<PrimitiveDateTime> for Value

Available on crate feature with-time only.
Sourceยง

fn from(x: PrimitiveDateTime) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Simple> for Value

Available on crate feature with-uuid only.
Sourceยง

fn from(x: Simple) -> Value

Converts to this type from the input type.
Sourceยง

impl From<String> for Value

Sourceยง

fn from(x: String) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Time> for Value

Available on crate feature with-time only.
Sourceยง

fn from(x: Time) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Time> for Value

Available on crate feature with-jiff only.
Sourceยง

fn from(x: Time) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Timestamp> for Value

Available on crate feature with-jiff only.
Sourceยง

fn from(x: Timestamp) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Urn> for Value

Available on crate feature with-uuid only.
Sourceยง

fn from(x: Urn) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Uuid> for Value

Available on crate feature with-uuid only.
Sourceยง

fn from(x: Uuid) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Value> for Value

Available on crate feature with-json only.
Sourceยง

fn from(x: Json) -> Value

Converts to this type from the input type.
Sourceยง

impl<T> From<Vec<T>> for Value
where T: Into<Value> + NotU8 + ValueType,

Available on crate feature postgres-array only.
Sourceยง

fn from(x: Vec<T>) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Vec<u8>> for Value

Sourceยง

fn from(x: Vec<u8>) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Vector> for Value

Available on crate feature postgres-vector only.
Sourceยง

fn from(x: Vector) -> Value

Converts to this type from the input type.
Sourceยง

impl From<Zoned> for Value

Available on crate feature with-jiff only.
Sourceยง

fn from(x: Zoned) -> Value

Converts to this type from the input type.
Sourceยง

impl From<bool> for Value

Sourceยง

fn from(x: bool) -> Value

Converts to this type from the input type.
Sourceยง

impl From<char> for Value

Sourceยง

fn from(x: char) -> Value

Converts to this type from the input type.
Sourceยง

impl From<f32> for Value

Sourceยง

fn from(x: f32) -> Value

Converts to this type from the input type.
Sourceยง

impl From<f64> for Value

Sourceยง

fn from(x: f64) -> Value

Converts to this type from the input type.
Sourceยง

impl From<i16> for Value

Sourceยง

fn from(x: i16) -> Value

Converts to this type from the input type.
Sourceยง

impl From<i32> for Value

Sourceยง

fn from(x: i32) -> Value

Converts to this type from the input type.
Sourceยง

impl From<i64> for Value

Sourceยง

fn from(x: i64) -> Value

Converts to this type from the input type.
Sourceยง

impl From<i8> for Value

Sourceยง

fn from(x: i8) -> Value

Converts to this type from the input type.
Sourceยง

impl From<u16> for Value

Sourceยง

fn from(x: u16) -> Value

Converts to this type from the input type.
Sourceยง

impl From<u32> for Value

Sourceยง

fn from(x: u32) -> Value

Converts to this type from the input type.
Sourceยง

impl From<u64> for Value

Sourceยง

fn from(x: u64) -> Value

Converts to this type from the input type.
Sourceยง

impl From<u8> for Value

Sourceยง

fn from(x: u8) -> Value

Converts to this type from the input type.
Sourceยง

impl Hash for Value

Available on crate feature hashable-value only.
Sourceยง

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 ยท Sourceยง

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Sourceยง

impl PartialEq for Value

Available on crate feature hashable-value only.
Sourceยง

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 ยท Sourceยง

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Sourceยง

impl Serialize for Value

Sourceยง

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Sourceยง

impl Eq for Value

Available on crate feature hashable-value only.

Auto Trait Implementationsยง

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, dest: *mut u8)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Sourceยง

impl<T> ExprTrait for T
where T: Into<Expr>,

Sourceยง

fn as_enum<N>(self, type_name: N) -> Expr
where N: IntoIden,

Express a AS enum expression. Read more
Sourceยง

fn binary<O, R>(self, op: O, right: R) -> Expr
where O: Into<BinOper>, R: Into<Expr>,

Create any binary operation Read more
Sourceยง

fn cast_as<N>(self, type_name: N) -> Expr
where N: IntoIden,

Express a CAST AS expression. Read more
Sourceยง

fn unary(self, op: UnOper) -> Expr

Apply any unary operator to the expression. Read more
Sourceยง

fn add<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express an arithmetic addition operation. Read more
Sourceยง

fn and<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a logical AND operation. Read more
Sourceยง

fn between<A, B>(self, a: A, b: B) -> Expr
where A: Into<Expr>, B: Into<Expr>,

Express a BETWEEN expression. Read more
Sourceยง

fn div<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express an arithmetic division operation. Read more
Sourceยง

fn eq<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express an equal (=) expression. Read more
Sourceยง

fn equals<C>(self, col: C) -> Expr
where C: IntoColumnRef,

Express a equal expression between two table columns, you will mainly use this to relate identical value between two table columns. Read more
Sourceยง

fn gt<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a greater than (>) expression. Read more
Sourceยง

fn gte<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a greater than or equal (>=) expression. Read more
Sourceยง

fn in_subquery(self, sel: SelectStatement) -> Expr

Express a IN sub-query expression. Read more
Sourceยง

fn in_tuples<V, I>(self, v: I) -> Expr
where V: IntoValueTuple, I: IntoIterator<Item = V>,

Express a IN sub expression. Read more
Sourceยง

fn is<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a IS expression. Read more
Sourceยง

fn is_in<V, I>(self, v: I) -> Expr
where V: Into<Expr>, I: IntoIterator<Item = V>,

Express a IN expression. Read more
Sourceยง

fn is_not<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a IS NOT expression. Read more
Sourceยง

fn is_not_in<V, I>(self, v: I) -> Expr
where V: Into<Expr>, I: IntoIterator<Item = V>,

Express a NOT IN expression. Read more
Sourceยง

fn is_not_null(self) -> Expr

Express a IS NOT NULL expression. Read more
Sourceยง

fn is_null(self) -> Expr

Express a IS NULL expression. Read more
Sourceยง

fn left_shift<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a bitwise left shift. Read more
Sourceยง

fn like<L>(self, like: L) -> Expr
where L: IntoLikeExpr,

Express a LIKE expression. Read more
Sourceยง

fn lt<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a less than (<) expression. Read more
Sourceยง

fn lte<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a less than or equal (<=) expression. Read more
Sourceยง

fn modulo<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express an arithmetic modulo operation. Read more
Sourceยง

fn mul<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express an arithmetic multiplication operation. Read more
Sourceยง

fn ne<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a not equal (<>) expression. Read more
Sourceยง

fn not(self) -> Expr

Negates an expression with NOT. Read more
Sourceยง

fn not_between<A, B>(self, a: A, b: B) -> Expr
where A: Into<Expr>, B: Into<Expr>,

Express a NOT BETWEEN expression. Read more
Sourceยง

fn not_equals<C>(self, col: C) -> Expr
where C: IntoColumnRef,

Express a not equal expression between two table columns, you will mainly use this to relate identical value between two table columns. Read more
Sourceยง

fn not_in_subquery(self, sel: SelectStatement) -> Expr

Express a NOT IN sub-query expression. Read more
Sourceยง

fn not_like<L>(self, like: L) -> Expr
where L: IntoLikeExpr,

Express a NOT LIKE expression. Read more
Sourceยง

fn or<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a logical OR operation. Read more
Sourceยง

fn right_shift<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a bitwise right shift. Read more
Sourceยง

fn sub<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express an arithmetic subtraction operation. Read more
Sourceยง

fn bit_and<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a bitwise AND operation. Read more
Sourceยง

fn bit_or<R>(self, right: R) -> Expr
where R: Into<Expr>,

Express a bitwise OR operation. Read more
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> IntoValueTuple for T
where T: Into<ValueTuple>,

Sourceยง

impl<T> PgExpr for T
where T: ExprTrait,

Sourceยง

fn concatenate<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-postgres only.
Express an postgres concatenate (||) expression. Read more
Sourceยง

fn concat<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-postgres only.
Sourceยง

fn matches<T>(self, expr: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-postgres only.
Express an postgres fulltext search matches (@@) expression. Read more
Sourceยง

fn contains<T>(self, expr: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-postgres only.
Express an postgres fulltext search contains (@>) expression. Read more
Sourceยง

fn contained<T>(self, expr: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-postgres only.
Express an postgres fulltext search contained (<@) expression. Read more
Sourceยง

fn ilike<L>(self, like: L) -> Expr
where L: IntoLikeExpr,

Available on crate feature backend-postgres only.
Express a ILIKE expression. Read more
Sourceยง

fn not_ilike<L>(self, like: L) -> Expr
where L: IntoLikeExpr,

Available on crate feature backend-postgres only.
Express a NOT ILIKE expression
Sourceยง

fn get_json_field<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-postgres only.
Express a postgres retrieves JSON field as JSON value (->). Read more
Sourceยง

fn cast_json_field<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-postgres only.
Express a postgres retrieves JSON field and casts it to an appropriate SQL type (->>). Read more
Sourceยง

impl<T> SqliteExpr for T
where T: ExprTrait,

Sourceยง

fn glob<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-sqlite only.
Express an sqlite GLOB operator. Read more
Sourceยง

fn matches<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-sqlite only.
Express an sqlite MATCH operator. Read more
Sourceยง

fn get_json_field<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-sqlite only.
Express an sqlite retrieves JSON field as JSON value (->). Read more
Sourceยง

fn cast_json_field<T>(self, right: T) -> Expr
where T: Into<Expr>,

Available on crate feature backend-sqlite only.
Express an sqlite retrieves JSON field and casts it to an appropriate SQL type (->>). 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> ToString for T
where T: Display + ?Sized,

Sourceยง

fn to_string(&self) -> String

Converts the given value to a String. 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<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,