#[non_exhaustive]pub enum ToSqlOutput<'a> {
    Borrowed(ValueRef<'a>),
    Owned(Value),
    ZeroBlob(i32),
    Array(Array),
}Expand description
ToSqlOutput represents the possible output types for implementers of the
ToSql trait.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Borrowed(ValueRef<'a>)
A borrowed SQLite-representable value.
Owned(Value)
An owned SQLite-representable value.
ZeroBlob(i32)
Available on crate feature 
blob only.A BLOB of the given length that is filled with zeroes.
Array(Array)
Available on crate feature 
array only.feature = "array"
Trait Implementations§
Source§impl<'a> Clone for ToSqlOutput<'a>
 
impl<'a> Clone for ToSqlOutput<'a>
Source§fn clone(&self) -> ToSqlOutput<'a>
 
fn clone(&self) -> ToSqlOutput<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl<'a> Debug for ToSqlOutput<'a>
 
impl<'a> Debug for ToSqlOutput<'a>
Source§impl From<Null> for ToSqlOutput<'_>
 
impl From<Null> for ToSqlOutput<'_>
Source§impl From<String> for ToSqlOutput<'_>
 
impl From<String> for ToSqlOutput<'_>
Source§impl From<Uuid> for ToSqlOutput<'_>
 
impl From<Uuid> for ToSqlOutput<'_>
Source§impl From<bool> for ToSqlOutput<'_>
 
impl From<bool> for ToSqlOutput<'_>
Source§impl From<f32> for ToSqlOutput<'_>
 
impl From<f32> for ToSqlOutput<'_>
Source§impl From<f64> for ToSqlOutput<'_>
 
impl From<f64> for ToSqlOutput<'_>
Source§impl From<i128> for ToSqlOutput<'_>
 
impl From<i128> for ToSqlOutput<'_>
Source§impl From<i16> for ToSqlOutput<'_>
 
impl From<i16> for ToSqlOutput<'_>
Source§impl From<i32> for ToSqlOutput<'_>
 
impl From<i32> for ToSqlOutput<'_>
Source§impl From<i64> for ToSqlOutput<'_>
 
impl From<i64> for ToSqlOutput<'_>
Source§impl From<i8> for ToSqlOutput<'_>
 
impl From<i8> for ToSqlOutput<'_>
Source§impl From<isize> for ToSqlOutput<'_>
 
impl From<isize> for ToSqlOutput<'_>
Source§impl From<u16> for ToSqlOutput<'_>
 
impl From<u16> for ToSqlOutput<'_>
Source§impl From<u32> for ToSqlOutput<'_>
 
impl From<u32> for ToSqlOutput<'_>
Source§impl From<u8> for ToSqlOutput<'_>
 
impl From<u8> for ToSqlOutput<'_>
Source§impl<'a> PartialEq for ToSqlOutput<'a>
 
impl<'a> PartialEq for ToSqlOutput<'a>
Source§impl ToSql for ToSqlOutput<'_>
 
impl ToSql for ToSqlOutput<'_>
Source§fn to_sql(&self) -> Result<ToSqlOutput<'_>>
 
fn to_sql(&self) -> Result<ToSqlOutput<'_>>
Converts Rust value to SQLite value
impl<'a> StructuralPartialEq for ToSqlOutput<'a>
Auto Trait Implementations§
impl<'a> Freeze for ToSqlOutput<'a>
impl<'a> RefUnwindSafe for ToSqlOutput<'a>
impl<'a> !Send for ToSqlOutput<'a>
impl<'a> !Sync for ToSqlOutput<'a>
impl<'a> Unpin for ToSqlOutput<'a>
impl<'a> UnwindSafe for ToSqlOutput<'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