pub enum PropertyValueRef<'a> {
Show 17 variants
Null,
Bool(bool),
Integer(i64),
Float(f64),
String(&'a str),
Date(&'a DateValue),
LocalTime(&'a LocalTimeValue),
ZonedTime(&'a ZonedTimeValue),
LocalDateTime(&'a LocalDateTimeValue),
ZonedDateTime(&'a ZonedDateTimeValue),
Duration(&'a DurationValue),
Point(&'a PointValue),
Geometry(&'a GeometryValue),
Geography(&'a GeographyValue),
List(&'a ListValue),
Vector(&'a VectorValue),
Bytes(&'a [u8]),
}Variants§
Null
Bool(bool)
Integer(i64)
Float(f64)
String(&'a str)
Date(&'a DateValue)
LocalTime(&'a LocalTimeValue)
ZonedTime(&'a ZonedTimeValue)
LocalDateTime(&'a LocalDateTimeValue)
ZonedDateTime(&'a ZonedDateTimeValue)
Duration(&'a DurationValue)
Point(&'a PointValue)
Geometry(&'a GeometryValue)
Geography(&'a GeographyValue)
List(&'a ListValue)
Vector(&'a VectorValue)
Bytes(&'a [u8])
Trait Implementations§
Source§impl<'a> Clone for PropertyValueRef<'a>
impl<'a> Clone for PropertyValueRef<'a>
Source§fn clone(&self) -> PropertyValueRef<'a>
fn clone(&self) -> PropertyValueRef<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for PropertyValueRef<'a>
Source§impl<'a> Debug for PropertyValueRef<'a>
impl<'a> Debug for PropertyValueRef<'a>
Source§impl<'a> PartialEq for PropertyValueRef<'a>
impl<'a> PartialEq for PropertyValueRef<'a>
Source§fn eq(&self, other: &PropertyValueRef<'a>) -> bool
fn eq(&self, other: &PropertyValueRef<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> StructuralPartialEq for PropertyValueRef<'a>
Auto Trait Implementations§
impl<'a> Freeze for PropertyValueRef<'a>
impl<'a> RefUnwindSafe for PropertyValueRef<'a>
impl<'a> Send for PropertyValueRef<'a>
impl<'a> Sync for PropertyValueRef<'a>
impl<'a> Unpin for PropertyValueRef<'a>
impl<'a> UnsafeUnpin for PropertyValueRef<'a>
impl<'a> UnwindSafe for PropertyValueRef<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more