Enum sea_query::value::Value

source ·
pub enum Value {
Show 31 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<Box<String>>), Char(Option<char>), Bytes(Option<Box<Vec<u8>>>), Json(Option<Box<Json>>), ChronoDate(Option<Box<NaiveDate>>), ChronoTime(Option<Box<NaiveTime>>), ChronoDateTime(Option<Box<NaiveDateTime>>), ChronoDateTimeUtc(Option<Box<DateTime<Utc>>>), ChronoDateTimeLocal(Option<Box<DateTime<Local>>>), ChronoDateTimeWithTimeZone(Option<Box<DateTime<FixedOffset>>>), TimeDate(Option<Box<Date>>), TimeTime(Option<Box<Time>>), TimeDateTime(Option<Box<PrimitiveDateTime>>), TimeDateTimeWithTimeZone(Option<Box<OffsetDateTime>>), Uuid(Option<Box<Uuid>>), Decimal(Option<Box<Decimal>>), BigDecimal(Option<Box<BigDecimal>>), Array(ArrayType, Option<Box<Vec<Value>>>), IpNetwork(Option<Box<IpNetwork>>), MacAddress(Option<Box<MacAddress>>),
}
Expand description

Value variants

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

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<Box<String>>)

§

Char(Option<char>)

§

Bytes(Option<Box<Vec<u8>>>)

§

Json(Option<Box<Json>>)

Available on crate feature with-json only.
§

ChronoDate(Option<Box<NaiveDate>>)

Available on crate feature with-chrono only.
§

ChronoTime(Option<Box<NaiveTime>>)

Available on crate feature with-chrono only.
§

ChronoDateTime(Option<Box<NaiveDateTime>>)

Available on crate feature with-chrono only.
§

ChronoDateTimeUtc(Option<Box<DateTime<Utc>>>)

Available on crate feature with-chrono only.
§

ChronoDateTimeLocal(Option<Box<DateTime<Local>>>)

Available on crate feature with-chrono only.
§

ChronoDateTimeWithTimeZone(Option<Box<DateTime<FixedOffset>>>)

Available on crate feature with-chrono only.
§

TimeDate(Option<Box<Date>>)

Available on crate feature with-time only.
§

TimeTime(Option<Box<Time>>)

Available on crate feature with-time only.
§

TimeDateTime(Option<Box<PrimitiveDateTime>>)

Available on crate feature with-time only.
§

TimeDateTimeWithTimeZone(Option<Box<OffsetDateTime>>)

Available on crate feature with-time only.
§

Uuid(Option<Box<Uuid>>)

Available on crate feature with-uuid only.
§

Decimal(Option<Box<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.
§

IpNetwork(Option<Box<IpNetwork>>)

Available on crate feature with-ipnetwork only.
§

MacAddress(Option<Box<MacAddress>>)

Available on crate feature with-mac_address only.

Implementations§

source§

impl Value

source

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

source

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

source§

impl Value

source

pub fn is_json(&self) -> bool

source

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

source§

impl Value

source§

impl Value

source

pub fn is_time_date(&self) -> bool

source

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

source§

impl Value

source§

impl Value

source

pub fn is_time_time(&self) -> bool

source

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

source§

impl Value

source§

impl Value

source§

impl Value

source§

impl Value

source§

impl Value

source§

impl Value

source§

impl Value

source§

impl Value

source§

impl Value

source

pub fn is_decimal(&self) -> bool

source

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

source

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

source§

impl Value

source§

impl Value

source

pub fn is_uuid(&self) -> bool

source

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

source§

impl Value

source

pub fn is_array(&self) -> bool

source

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

source§

impl Value

source

pub fn is_ipnetwork(&self) -> bool

source

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

source

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

source§

impl Value

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Debug for Value

source§

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

Formats the value using the given formatter. 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<'a> From<&'a [u8]> for Value

source§

fn from(x: &'a [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<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<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 Valuewhere 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<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, Global>> for Valuewhere 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, Global>> for Value

source§

fn from(x: Vec<u8>) -> 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 PartialEq<Value> for Value

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for Value

Auto Trait Implementations§

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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<V> IntoValueTuple for Vwhere V: Into<Value>,

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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. 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.
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.
source§

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

Performs the conversion.