[−][src]Struct rbatis_core::sqlite::Sqlite
Sqlite database driver.
Trait Implementations
impl Database for Sqlite[src]
type Connection = SqliteConnection
The concrete Connection implementation for this database.
type Arguments = SqliteArguments
The concrete Arguments implementation for this database.
type TypeInfo = SqliteTypeInfo
The concrete TypeInfo implementation for this database.
type TableId = String
The Rust type of table identifiers for this database.
type RawBuffer = Vec<SqliteArgumentValue>
The Rust type used as the buffer when encoding arguments. Read more
type Error = SqliteError
The concrete DatabaseError type used to report errors from the database.
impl Debug for Sqlite[src]
impl<'a> Decode<'a, Sqlite> for bool[src]
fn decode(value: SqliteValue<'a>) -> Result<bool>[src]
impl<'a> Decode<'a, Sqlite> for f32[src]
fn decode(value: SqliteValue<'a>) -> Result<f32>[src]
impl<'a> Decode<'a, Sqlite> for f64[src]
fn decode(value: SqliteValue<'a>) -> Result<f64>[src]
impl<'a> Decode<'a, Sqlite> for i32[src]
fn decode(value: SqliteValue<'a>) -> Result<i32>[src]
impl<'a> Decode<'a, Sqlite> for i64[src]
fn decode(value: SqliteValue<'a>) -> Result<i64>[src]
impl<'de> Decode<'de, Sqlite> for &'de [u8][src]
impl<'de> Decode<'de, Sqlite> for Vec<u8>[src]
impl<'de> Decode<'de, Sqlite> for &'de str[src]
fn decode(value: SqliteValue<'de>) -> Result<&'de str>[src]
impl<'de> Decode<'de, Sqlite> for String[src]
fn decode(value: SqliteValue<'de>) -> Result<String>[src]
impl<'de, T> Decode<'de, Sqlite> for Option<T> where
T: Decode<'de, Sqlite>, [src]
T: Decode<'de, Sqlite>,
fn decode(value: SqliteValue<'de>) -> Result<Self>[src]
impl Encode<Sqlite> for bool[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for [u8][src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for Vec<u8>[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for f32[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for f64[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for i32[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for i64[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for str[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl Encode<Sqlite> for String[src]
fn encode(&self, values: &mut Vec<SqliteArgumentValue>)[src]
fn encode_nullable(&self, buf: &mut DB::RawBuffer) -> IsNull[src]
fn size_hint(&self) -> usize[src]
impl<'c, 'q> HasCursor<'c, 'q> for Sqlite[src]
type Database = Sqlite
type Cursor = SqliteCursor<'c, 'q>
The concrete Cursor implementation for this database.
impl<'c> HasRawValue<'c> for Sqlite[src]
type Database = Sqlite
type RawValue = SqliteValue<'c>
The Rust type used to hold a not-yet-decoded value that has just been received from the database. Read more
impl<'c> HasRow<'c> for Sqlite[src]
impl<O: Unpin, F> MapRow<Sqlite> for F where
F: for<'c> FnMut(SqliteRow<'c>) -> O, [src]
F: for<'c> FnMut(SqliteRow<'c>) -> O,
impl<O: Unpin, F> TryMapRow<Sqlite> for F where
F: for<'c> FnMut(SqliteRow<'c>) -> Result<O>, [src]
F: for<'c> FnMut(SqliteRow<'c>) -> Result<O>,
type Output = O
fn try_map_row(&mut self, row: SqliteRow<'_>) -> Result<O>[src]
impl Type<Sqlite> for bool[src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for [u8][src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for Vec<u8>[src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for f32[src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for f64[src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for i32[src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for i64[src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for str[src]
fn type_info() -> SqliteTypeInfo[src]
impl Type<Sqlite> for String[src]
fn type_info() -> SqliteTypeInfo[src]
Auto Trait Implementations
impl RefUnwindSafe for Sqlite
impl Send for Sqlite
impl Sync for Sqlite
impl Unpin for Sqlite
impl UnwindSafe for Sqlite
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,