pub struct RowidAliasHint {
pub qualifier: Option<String>,
pub column: String,
}Expand description
Schema hint that a visible table column is an alias for SQLite’s hidden
rowid, as with INTEGER PRIMARY KEY.
Fields§
§qualifier: Option<String>Optional table name or query alias qualifier accepted for the column.
column: StringVisible column name that aliases the rowid.
Implementations§
Trait Implementations§
Source§impl Clone for RowidAliasHint
impl Clone for RowidAliasHint
Source§fn clone(&self) -> RowidAliasHint
fn clone(&self) -> RowidAliasHint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RowidAliasHint
impl Debug for RowidAliasHint
impl Eq for RowidAliasHint
Source§impl PartialEq for RowidAliasHint
impl PartialEq for RowidAliasHint
Source§fn eq(&self, other: &RowidAliasHint) -> bool
fn eq(&self, other: &RowidAliasHint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RowidAliasHint
Auto Trait Implementations§
impl Freeze for RowidAliasHint
impl RefUnwindSafe for RowidAliasHint
impl Send for RowidAliasHint
impl Sync for RowidAliasHint
impl Unpin for RowidAliasHint
impl UnsafeUnpin for RowidAliasHint
impl UnwindSafe for RowidAliasHint
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.