pub struct Exasol;
Expand description
Implementor of Database
.
Trait Implementations§
Source§impl Database for Exasol
impl Database for Exasol
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 = ExaConnection
type Connection = ExaConnection
The concrete
Connection
implementation for this database.Source§type TransactionManager = ExaTransactionManager
type TransactionManager = ExaTransactionManager
The concrete
TransactionManager
implementation for this database.Source§type QueryResult = ExaQueryResult
type QueryResult = ExaQueryResult
The concrete
QueryResult
implementation for this database.Source§type TypeInfo = ExaTypeInfo
type TypeInfo = ExaTypeInfo
The concrete
TypeInfo
implementation for this database.Source§type Value = ExaValue
type Value = ExaValue
The concrete type used to hold an owned copy of the not-yet-decoded value that was
received from the database.
Source§type ValueRef<'r> = ExaValueRef<'r>
type ValueRef<'r> = ExaValueRef<'r>
The concrete type used to hold a reference to the not-yet-decoded value that has just been
received from the database.
Source§type Arguments<'q> = ExaArguments
type Arguments<'q> = ExaArguments
The concrete
Arguments
implementation for this database.Source§type ArgumentBuffer<'q> = ExaBuffer
type ArgumentBuffer<'q> = ExaBuffer
The concrete type used as a buffer for arguments while encoding.
Source§type Statement<'q> = ExaStatement<'q>
type Statement<'q> = ExaStatement<'q>
The concrete
Statement
implementation for this database.Source§impl Decode<'_, Exasol> for Decimal
impl Decode<'_, Exasol> for Decimal
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for NaiveDate
impl Decode<'_, Exasol> for NaiveDate
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for NaiveDateTime
impl Decode<'_, Exasol> for NaiveDateTime
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for String
impl Decode<'_, Exasol> for String
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for Uuid
impl Decode<'_, Exasol> for Uuid
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for bool
impl Decode<'_, Exasol> for bool
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for f32
impl Decode<'_, Exasol> for f32
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for f64
impl Decode<'_, Exasol> for f64
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for i128
impl Decode<'_, Exasol> for i128
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for i16
impl Decode<'_, Exasol> for i16
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for i32
impl Decode<'_, Exasol> for i32
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for i64
impl Decode<'_, Exasol> for i64
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for i8
impl Decode<'_, Exasol> for i8
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for u128
impl Decode<'_, Exasol> for u128
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for u16
impl Decode<'_, Exasol> for u16
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for u32
impl Decode<'_, Exasol> for u32
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for u64
impl Decode<'_, Exasol> for u64
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl Decode<'_, Exasol> for u8
impl Decode<'_, Exasol> for u8
Source§fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, Exasol> for &'r str
impl<'r> Decode<'r, Exasol> for &'r str
Source§fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, Exasol> for Cow<'r, str>
impl<'r> Decode<'r, Exasol> for Cow<'r, str>
Source§fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, Exasol> for DateTime<Local>
impl<'r> Decode<'r, Exasol> for DateTime<Local>
Source§fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, Exasol> for DateTime<Utc>
impl<'r> Decode<'r, Exasol> for DateTime<Utc>
Source§fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, Exasol> for Months
impl<'r> Decode<'r, Exasol> for Months
Source§fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r, T> Decode<'r, Exasol> for Text<T>
impl<'r, T> Decode<'r, Exasol> for Text<T>
Source§fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<'r> Decode<'r, Exasol> for Duration
impl<'r> Decode<'r, Exasol> for Duration
Source§fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: ExaValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
Source§impl<T> Encode<'_, Exasol> for &[T]
impl<T> Encode<'_, Exasol> for &[T]
Source§impl<T> Encode<'_, Exasol> for &mut [T]
impl<T> Encode<'_, Exasol> for &mut [T]
Source§impl Encode<'_, Exasol> for &str
impl Encode<'_, Exasol> for &str
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl<T, const N: usize> Encode<'_, Exasol> for [T; N]
impl<T, const N: usize> Encode<'_, Exasol> for [T; N]
Source§impl<T> Encode<'_, Exasol> for Box<[T]>
impl<T> Encode<'_, Exasol> for Box<[T]>
Source§impl Encode<'_, Exasol> for Cow<'_, str>
impl Encode<'_, Exasol> for Cow<'_, str>
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for DateTime<Local>
impl Encode<'_, Exasol> for DateTime<Local>
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for DateTime<Utc>
impl Encode<'_, Exasol> for DateTime<Utc>
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for Decimal
impl Encode<'_, Exasol> for Decimal
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl<T, I> Encode<'_, Exasol> for ExaIter<I, T>
impl<T, I> Encode<'_, Exasol> for ExaIter<I, T>
Source§impl Encode<'_, Exasol> for Months
impl Encode<'_, Exasol> for Months
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for NaiveDate
impl Encode<'_, Exasol> for NaiveDate
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for NaiveDateTime
impl Encode<'_, Exasol> for NaiveDateTime
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl<T> Encode<'_, Exasol> for Option<T>
impl<T> Encode<'_, Exasol> for Option<T>
fn produces(&self) -> Option<ExaTypeInfo>
Source§fn encode(self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode(self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
Writes the value of
self
into buf
in the expected format for the database.Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for String
impl Encode<'_, Exasol> for String
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for Duration
impl Encode<'_, Exasol> for Duration
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for Uuid
impl Encode<'_, Exasol> for Uuid
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl<T> Encode<'_, Exasol> for Vec<T>
impl<T> Encode<'_, Exasol> for Vec<T>
Source§impl Encode<'_, Exasol> for bool
impl Encode<'_, Exasol> for bool
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for f32
impl Encode<'_, Exasol> for f32
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
Source§fn encode(
self,
buf: &mut <DB as Database>::ArgumentBuffer<'q>,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
Self: Sized,
fn encode(
self,
buf: &mut <DB as Database>::ArgumentBuffer<'q>,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for f64
impl Encode<'_, Exasol> for f64
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
Source§fn encode(
self,
buf: &mut <DB as Database>::ArgumentBuffer<'q>,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
Self: Sized,
fn encode(
self,
buf: &mut <DB as Database>::ArgumentBuffer<'q>,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
Self: Sized,
Writes the value of
self
into buf
in the expected format for the database.fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for i128
impl Encode<'_, Exasol> for i128
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for i16
impl Encode<'_, Exasol> for i16
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for i32
impl Encode<'_, Exasol> for i32
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for i64
impl Encode<'_, Exasol> for i64
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for i8
impl Encode<'_, Exasol> for i8
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for u128
impl Encode<'_, Exasol> for u128
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for u16
impl Encode<'_, Exasol> for u16
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for u32
impl Encode<'_, Exasol> for u32
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for u64
impl Encode<'_, Exasol> for u64
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl Encode<'_, Exasol> for u8
impl Encode<'_, Exasol> for u8
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn produces(&self) -> Option<ExaTypeInfo>
fn size_hint(&self) -> usize
Source§impl<'q, T> Encode<'q, Exasol> for Text<T>where
T: Display,
impl<'q, T> Encode<'q, Exasol> for Text<T>where
T: Display,
Source§fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
fn encode_by_ref(&self, buf: &mut ExaBuffer) -> Result<IsNull, BoxDynError>
Source§fn encode(
self,
buf: &mut <DB as Database>::ArgumentBuffer<'q>,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
Self: Sized,
fn encode(
self,
buf: &mut <DB as Database>::ArgumentBuffer<'q>,
) -> Result<IsNull, Box<dyn Error + Send + Sync>>where
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 MigrateDatabase for Exasol
impl MigrateDatabase for Exasol
fn create_database(url: &str) -> BoxFuture<'_, Result<()>>
fn database_exists(url: &str) -> BoxFuture<'_, Result<bool>>
fn drop_database(url: &str) -> BoxFuture<'_, Result<()>>
fn force_drop_database( _url: &str, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + '_>>
Source§impl TestSupport for Exasol
impl TestSupport for Exasol
Source§fn test_context(
args: &TestArgs,
) -> BoxFuture<'_, Result<TestContext<Self>, Error>>
fn test_context( args: &TestArgs, ) -> BoxFuture<'_, Result<TestContext<Self>, Error>>
Get parameters to construct a
Pool
suitable for testing. Read morefn cleanup_test(db_name: &str) -> BoxFuture<'_, Result<(), Error>>
Source§fn cleanup_test_dbs() -> BoxFuture<'static, Result<Option<usize>, Error>>
fn cleanup_test_dbs() -> BoxFuture<'static, Result<Option<usize>, Error>>
Cleanup any test databases that are no longer in-use. Read more
Source§fn snapshot(
_conn: &mut Self::Connection,
) -> BoxFuture<'_, Result<FixtureSnapshot<Self>, Error>>
fn snapshot( _conn: &mut Self::Connection, ) -> BoxFuture<'_, Result<FixtureSnapshot<Self>, Error>>
Take a snapshot of the current state of the database (data only). Read more
Source§impl Type<Exasol> for Cow<'_, str>
impl Type<Exasol> for Cow<'_, str>
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for Decimal
impl Type<Exasol> for Decimal
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for Months
impl Type<Exasol> for Months
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for NaiveDateTime
impl Type<Exasol> for NaiveDateTime
Source§impl Type<Exasol> for String
impl Type<Exasol> for String
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl<T> Type<Exasol> for Text<T>
impl<T> Type<Exasol> for Text<T>
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for Duration
impl Type<Exasol> for Duration
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for Uuid
impl Type<Exasol> for Uuid
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for f32
impl Type<Exasol> for f32
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for f64
impl Type<Exasol> for f64
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for i128
impl Type<Exasol> for i128
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for i16
impl Type<Exasol> for i16
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for i32
impl Type<Exasol> for i32
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for i64
impl Type<Exasol> for i64
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for i8
impl Type<Exasol> for i8
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for str
impl Type<Exasol> for str
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for u128
impl Type<Exasol> for u128
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for u16
impl Type<Exasol> for u16
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for u32
impl Type<Exasol> for u32
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for u64
impl Type<Exasol> for u64
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
Source§impl Type<Exasol> for u8
impl Type<Exasol> for u8
Source§fn type_info() -> ExaTypeInfo
fn type_info() -> ExaTypeInfo
Returns the canonical SQL type for this Rust type. Read more
Source§fn compatible(ty: &ExaTypeInfo) -> bool
fn compatible(ty: &ExaTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
impl Copy for Exasol
impl HasStatementCache for Exasol
Auto Trait Implementations§
impl Freeze for Exasol
impl RefUnwindSafe for Exasol
impl Send for Exasol
impl Sync for Exasol
impl Unpin for Exasol
impl UnwindSafe for Exasol
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§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