#[non_exhaustive]pub enum ToSqlOutput<'a> {
Borrowed(ValueRef<'a>),
Owned(Value),
}
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.
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<NonZero<i16>> for ToSqlOutput<'_>
impl From<NonZero<i16>> for ToSqlOutput<'_>
Source§fn from(t: NonZeroI16) -> Self
fn from(t: NonZeroI16) -> Self
Converts to this type from the input type.
Source§impl From<NonZero<i32>> for ToSqlOutput<'_>
impl From<NonZero<i32>> for ToSqlOutput<'_>
Source§fn from(t: NonZeroI32) -> Self
fn from(t: NonZeroI32) -> Self
Converts to this type from the input type.
Source§impl From<NonZero<i64>> for ToSqlOutput<'_>
impl From<NonZero<i64>> for ToSqlOutput<'_>
Source§fn from(t: NonZeroI64) -> Self
fn from(t: NonZeroI64) -> Self
Converts to this type from the input type.
Source§impl From<NonZero<isize>> for ToSqlOutput<'_>
impl From<NonZero<isize>> for ToSqlOutput<'_>
Source§fn from(t: NonZeroIsize) -> Self
fn from(t: NonZeroIsize) -> Self
Converts to this type from the input type.
Source§impl From<NonZero<u16>> for ToSqlOutput<'_>
impl From<NonZero<u16>> for ToSqlOutput<'_>
Source§fn from(t: NonZeroU16) -> Self
fn from(t: NonZeroU16) -> Self
Converts to this type from the input type.
Source§impl From<NonZero<u32>> for ToSqlOutput<'_>
impl From<NonZero<u32>> for ToSqlOutput<'_>
Source§fn from(t: NonZeroU32) -> Self
fn from(t: NonZeroU32) -> Self
Converts to this type from the input type.
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<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<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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 32 bytes
Size for each variant:
Borrowed
: 32 bytesOwned
: 32 bytes