pub struct RXQLite;
Expand description
RXQLite database driver.
Trait Implementations§
Source§impl Database for RXQLite
impl Database for RXQLite
Source§const URL_SCHEMES: &'static [&'static str]
const URL_SCHEMES: &'static [&'static str]
The schemes for database URLs that should match this driver.
Source§type Connection = RXQLiteConnection
type Connection = RXQLiteConnection
The concrete
Connection
implementation for this database.Source§type TransactionManager = RXQLiteTransactionManager
type TransactionManager = RXQLiteTransactionManager
The concrete
TransactionManager
implementation for this database.Source§type Row = RXQLiteRow
type Row = RXQLiteRow
The concrete
Row
implementation for this database.Source§type QueryResult = RXQLiteQueryResult
type QueryResult = RXQLiteQueryResult
The concrete
QueryResult
implementation for this database.Source§type Column = RXQLiteColumn
type Column = RXQLiteColumn
The concrete
Column
implementation for this database.Source§type TypeInfo = RXQLiteTypeInfo
type TypeInfo = RXQLiteTypeInfo
The concrete
TypeInfo
implementation for this database.Source§type Value = RXQLiteValue
type Value = RXQLiteValue
The concrete type used to hold an owned copy of the not-yet-decoded value that was
received from the database.
Source§impl Decode<'_, RXQLite> for Box<str>
impl Decode<'_, RXQLite> for Box<str>
Source§fn decode(value: RXQLiteValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for DateTime<FixedOffset>
impl<'r> Decode<'r, RXQLite> for DateTime<FixedOffset>
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for DateTime<Local>
impl<'r> Decode<'r, RXQLite> for DateTime<Local>
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for DateTime<Utc>
impl<'r> Decode<'r, RXQLite> for DateTime<Utc>
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for NaiveDate
impl<'r> Decode<'r, RXQLite> for NaiveDate
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for NaiveDateTime
impl<'r> Decode<'r, RXQLite> for NaiveDateTime
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for NaiveTime
impl<'r> Decode<'r, RXQLite> for NaiveTime
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for String
impl<'r> Decode<'r, RXQLite> for String
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r, T> Decode<'r, RXQLite> for Text<T>
impl<'r, T> Decode<'r, RXQLite> for Text<T>
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for bool
impl<'r> Decode<'r, RXQLite> for bool
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<bool, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<bool, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for f32
impl<'r> Decode<'r, RXQLite> for f32
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<f32, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<f32, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for f64
impl<'r> Decode<'r, RXQLite> for f64
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<f64, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<f64, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for i16
impl<'r> Decode<'r, RXQLite> for i16
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for i32
impl<'r> Decode<'r, RXQLite> for i32
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for i64
impl<'r> Decode<'r, RXQLite> for i64
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for i8
impl<'r> Decode<'r, RXQLite> for i8
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for u16
impl<'r> Decode<'r, RXQLite> for u16
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for u32
impl<'r> Decode<'r, RXQLite> for u32
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, RXQLite> for u8
impl<'r> Decode<'r, RXQLite> for u8
Source§fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: RXQLiteValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Encode<'_, RXQLite> for Box<str>
impl Encode<'_, RXQLite> for Box<str>
Source§impl<Tz: TimeZone> Encode<'_, RXQLite> for DateTime<Tz>
impl<Tz: TimeZone> Encode<'_, RXQLite> for DateTime<Tz>
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, RXQLite> for NaiveDate
impl Encode<'_, RXQLite> for NaiveDate
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, RXQLite> for NaiveDateTime
impl Encode<'_, RXQLite> for NaiveDateTime
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, RXQLite> for NaiveTime
impl Encode<'_, RXQLite> for NaiveTime
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for &'q str
impl<'q> Encode<'q, RXQLite> for &'q str
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q, T> Encode<'q, RXQLite> for Option<T>
impl<'q, T> Encode<'q, RXQLite> for Option<T>
fn produces(&self) -> Option<<RXQLite as Database>::TypeInfo>
Source§fn encode(
self,
buf: &mut <RXQLite as HasArguments<'q>>::ArgumentBuffer,
) -> IsNull
fn encode( self, buf: &mut <RXQLite as HasArguments<'q>>::ArgumentBuffer, ) -> IsNull
Writes the value of
self
into buf
in the expected format for the database.Source§fn encode_by_ref(
&self,
buf: &mut <RXQLite as HasArguments<'q>>::ArgumentBuffer,
) -> IsNull
fn encode_by_ref( &self, buf: &mut <RXQLite as HasArguments<'q>>::ArgumentBuffer, ) -> IsNull
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for String
impl<'q> Encode<'q, RXQLite> for String
Source§impl<'q, T> Encode<'q, RXQLite> for Text<T>where
T: Display,
impl<'q, T> Encode<'q, RXQLite> for Text<T>where
T: Display,
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for bool
impl<'q> Encode<'q, RXQLite> for bool
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for f32
impl<'q> Encode<'q, RXQLite> for f32
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for f64
impl<'q> Encode<'q, RXQLite> for f64
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for i16
impl<'q> Encode<'q, RXQLite> for i16
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for i32
impl<'q> Encode<'q, RXQLite> for i32
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for i64
impl<'q> Encode<'q, RXQLite> for i64
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for i8
impl<'q> Encode<'q, RXQLite> for i8
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for u16
impl<'q> Encode<'q, RXQLite> for u16
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for u32
impl<'q> Encode<'q, RXQLite> for u32
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> Encode<'q, RXQLite> for u8
impl<'q> Encode<'q, RXQLite> for u8
Source§fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNullwhere
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn produces(&self) -> Option<<DB as Database>::TypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q> HasArguments<'q> for RXQLite
impl<'q> HasArguments<'q> for RXQLite
Source§impl<'q> HasStatement<'q> for RXQLite
impl<'q> HasStatement<'q> for RXQLite
Source§impl<'r> HasValueRef<'r> for RXQLite
impl<'r> HasValueRef<'r> for RXQLite
Source§impl<Tz: TimeZone> Type<RXQLite> for DateTime<Tz>
impl<Tz: TimeZone> Type<RXQLite> for DateTime<Tz>
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for NaiveDate
impl Type<RXQLite> for NaiveDate
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for NaiveDateTime
impl Type<RXQLite> for NaiveDateTime
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for NaiveTime
impl Type<RXQLite> for NaiveTime
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl<T> Type<RXQLite> for Text<T>
impl<T> Type<RXQLite> for Text<T>
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for bool
impl Type<RXQLite> for bool
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for i16
impl Type<RXQLite> for i16
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for i32
impl Type<RXQLite> for i32
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for i64
impl Type<RXQLite> for i64
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for i8
impl Type<RXQLite> for i8
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for u16
impl Type<RXQLite> for u16
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for u32
impl Type<RXQLite> for u32
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<RXQLite> for u8
impl Type<RXQLite> for u8
Source§fn type_info() -> RXQLiteTypeInfo
fn type_info() -> RXQLiteTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &RXQLiteTypeInfo) -> bool
fn compatible(ty: &RXQLiteTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
impl HasStatementCache for RXQLite
Auto Trait Implementations§
impl Freeze for RXQLite
impl RefUnwindSafe for RXQLite
impl Send for RXQLite
impl Sync for RXQLite
impl Unpin for RXQLite
impl UnwindSafe for RXQLite
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more