pub enum GoodOrmningSqliteTimestamp {
String(String),
I64(i64),
}Variants§
Trait Implementations§
Source§impl From<GoodOrmningSqliteTimestamp> for Value
impl From<GoodOrmningSqliteTimestamp> for Value
Source§fn from(val: GoodOrmningSqliteTimestamp) -> Self
fn from(val: GoodOrmningSqliteTimestamp) -> Self
Converts to this type from the input type.
Source§impl FromSql for GoodOrmningSqliteTimestamp
impl FromSql for GoodOrmningSqliteTimestamp
Source§fn column_result(value: ValueRef<'_>) -> Result<Self, FromSqlError>
fn column_result(value: ValueRef<'_>) -> Result<Self, FromSqlError>
Converts SQLite value into Rust value.
Source§impl ToSql for GoodOrmningSqliteTimestamp
impl ToSql for GoodOrmningSqliteTimestamp
Source§fn to_sql(&self) -> Result<ToSqlOutput<'_>>
fn to_sql(&self) -> Result<ToSqlOutput<'_>>
Converts Rust value to SQLite value
Auto Trait Implementations§
impl Freeze for GoodOrmningSqliteTimestamp
impl RefUnwindSafe for GoodOrmningSqliteTimestamp
impl Send for GoodOrmningSqliteTimestamp
impl Sync for GoodOrmningSqliteTimestamp
impl Unpin for GoodOrmningSqliteTimestamp
impl UnsafeUnpin for GoodOrmningSqliteTimestamp
impl UnwindSafe for GoodOrmningSqliteTimestamp
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