pub enum Value {
Show 28 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>>),
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(Option<Box<Vec<Value>>>),
}
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>>)
Bytes(Option<Box<Vec<u8>>>)
Json(Option<Box<Json>>)
This is supported on crate feature
with-json
only.ChronoDate(Option<Box<NaiveDate>>)
This is supported on crate feature
with-chrono
only.ChronoTime(Option<Box<NaiveTime>>)
This is supported on crate feature
with-chrono
only.ChronoDateTime(Option<Box<NaiveDateTime>>)
This is supported on crate feature
with-chrono
only.ChronoDateTimeUtc(Option<Box<DateTime<Utc>>>)
This is supported on crate feature
with-chrono
only.ChronoDateTimeLocal(Option<Box<DateTime<Local>>>)
This is supported on crate feature
with-chrono
only.ChronoDateTimeWithTimeZone(Option<Box<DateTime<FixedOffset>>>)
This is supported on crate feature
with-chrono
only.TimeDate(Option<Box<Date>>)
This is supported on crate feature
with-time
only.TimeTime(Option<Box<Time>>)
This is supported on crate feature
with-time
only.TimeDateTime(Option<Box<PrimitiveDateTime>>)
This is supported on crate feature
with-time
only.TimeDateTimeWithTimeZone(Option<Box<OffsetDateTime>>)
This is supported on crate feature
with-time
only.Uuid(Option<Box<Uuid>>)
This is supported on crate feature
with-uuid
only.Decimal(Option<Box<Decimal>>)
This is supported on crate feature
with-rust_decimal
only.BigDecimal(Option<Box<BigDecimal>>)
This is supported on crate feature
with-bigdecimal
only.Array(Option<Box<Vec<Value>>>)
This is supported on crate feature
postgres-array
only.Implementations
sourceimpl Value
impl Value
pub fn is_chrono_date(&self) -> bool
pub fn as_ref_chrono_date(&self) -> Option<&NaiveDate>
sourceimpl Value
impl Value
pub fn is_time_date(&self) -> bool
pub fn as_ref_time_date(&self) -> Option<&Date>
sourceimpl Value
impl Value
pub fn is_chrono_time(&self) -> bool
pub fn as_ref_chrono_time(&self) -> Option<&NaiveTime>
sourceimpl Value
impl Value
pub fn is_time_time(&self) -> bool
pub fn as_ref_time_time(&self) -> Option<&Time>
sourceimpl Value
impl Value
pub fn is_chrono_date_time(&self) -> bool
pub fn as_ref_chrono_date_time(&self) -> Option<&NaiveDateTime>
sourceimpl Value
impl Value
pub fn is_time_date_time(&self) -> bool
pub fn as_ref_time_date_time(&self) -> Option<&PrimitiveDateTime>
sourceimpl Value
impl Value
pub fn is_chrono_date_time_utc(&self) -> bool
pub fn as_ref_chrono_date_time_utc(&self) -> Option<&DateTime<Utc>>
sourceimpl Value
impl Value
pub fn is_chrono_date_time_local(&self) -> bool
pub fn as_ref_chrono_date_time_local(&self) -> Option<&DateTime<Local>>
sourceimpl Value
impl Value
pub fn is_chrono_date_time_with_time_zone(&self) -> bool
pub fn as_ref_chrono_date_time_with_time_zone(
&self
) -> Option<&DateTime<FixedOffset>>
sourceimpl Value
impl Value
pub fn is_time_date_time_with_time_zone(&self) -> bool
pub fn as_ref_time_date_time_with_time_zone(&self) -> Option<&OffsetDateTime>
sourceimpl Value
impl Value
pub fn is_decimal(&self) -> bool
pub fn as_ref_decimal(&self) -> Option<&Decimal>
pub fn decimal_to_f64(&self) -> Option<f64>
sourceimpl Value
impl Value
pub fn is_big_decimal(&self) -> bool
pub fn as_ref_big_decimal(&self) -> Option<&BigDecimal>
pub fn big_decimal_to_f64(&self) -> Option<f64>
Trait Implementations
sourceimpl From<BigDecimal> for Value
This is supported on crate feature with-bigdecimal
only.
impl From<BigDecimal> for Value
This is supported on crate feature
with-bigdecimal
only.sourcefn from(x: BigDecimal) -> Value
fn from(x: BigDecimal) -> Value
Converts to this type from the input type.
sourceimpl From<DateTime<FixedOffset>> for Value
This is supported on crate feature with-chrono
only.
impl From<DateTime<FixedOffset>> for Value
This is supported on crate feature
with-chrono
only.sourcefn from(x: DateTime<FixedOffset>) -> Value
fn from(x: DateTime<FixedOffset>) -> Value
Converts to this type from the input type.
sourceimpl From<NaiveDateTime> for Value
This is supported on crate feature with-chrono
only.
impl From<NaiveDateTime> for Value
This is supported on crate feature
with-chrono
only.sourcefn from(x: NaiveDateTime) -> Value
fn from(x: NaiveDateTime) -> Value
Converts to this type from the input type.
sourceimpl From<OffsetDateTime> for Value
This is supported on crate feature with-time
only.
impl From<OffsetDateTime> for Value
This is supported on crate feature
with-time
only.sourcefn from(v: OffsetDateTime) -> Value
fn from(v: OffsetDateTime) -> Value
Converts to this type from the input type.
sourceimpl From<PrimitiveDateTime> for Value
This is supported on crate feature with-time
only.
impl From<PrimitiveDateTime> for Value
This is supported on crate feature
with-time
only.sourcefn from(x: PrimitiveDateTime) -> Value
fn from(x: PrimitiveDateTime) -> Value
Converts to this type from the input type.
sourceimpl<T> From<Vec<T, Global>> for Value where
T: Into<Value> + NotU8,
This is supported on crate feature postgres-array
only.
impl<T> From<Vec<T, Global>> for Value where
T: Into<Value> + NotU8,
This is supported on crate feature
postgres-array
only.sourceimpl ToSql for Value
impl ToSql for Value
sourcefn to_sql(
&self,
ty: &Type,
out: &mut BytesMut
) -> Result<IsNull, Box<dyn Error + Sync + Send>>
fn to_sql(
&self,
ty: &Type,
out: &mut BytesMut
) -> Result<IsNull, Box<dyn Error + Sync + Send>>
Converts the value of self
into the binary format of the specified
Postgres Type
, appending it to out
. Read more
impl StructuralPartialEq for Value
Auto Trait Implementations
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
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<T> BorrowToSql for T where
T: ToSql,
impl<T> BorrowToSql for T where
T: ToSql,
sourcefn borrow_to_sql(&self) -> &dyn ToSql
fn borrow_to_sql(&self) -> &dyn ToSql
Returns a reference to self
as a ToSql
trait object.
sourceimpl<V> IntoValueTuple for V where
V: Into<Value>,
impl<V> IntoValueTuple for V where
V: Into<Value>,
fn into_value_tuple(self) -> ValueTuple
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more