Skip to main content

SQLiteTable

Trait SQLiteTable 

Source
pub trait SQLiteTable<'a>: SQLTable<'a, SQLiteSchemaType, SQLiteValue<'a>> {
    const WITHOUT_ROWID: bool;
    const STRICT: bool;
}

Required Associated Constants§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<'a, T> SQLiteTable<'a> for &T
where T: SQLiteTable<'a>, for<'x> &'x T: SQLTable<'a, SQLiteSchemaType, SQLiteValue<'a>>,

Source§

const WITHOUT_ROWID: bool = T::WITHOUT_ROWID

Source§

const STRICT: bool = T::STRICT

Implementors§