Enum rusqlite::types::ToSqlOutput
source · #[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 copy 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§fn eq(&self, other: &ToSqlOutput<'a>) -> bool
fn eq(&self, other: &ToSqlOutput<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)