pub enum PGValue {
Bytea(Vec<u8>),
CharacterVarying(String),
SmallInt(i16),
Integer(i32),
BigInt(i64),
Boolean(bool),
}
Variants§
Implementations§
Trait Implementations§
Source§impl From<PropertyValue> for PGValue
impl From<PropertyValue> for PGValue
Source§fn from(property: PropertyValue) -> Self
fn from(property: PropertyValue) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PGValue
impl RefUnwindSafe for PGValue
impl Send for PGValue
impl Sync for PGValue
impl Unpin for PGValue
impl UnwindSafe for PGValue
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