pub struct TableInternalId(/* private fields */);Expand description
Internal ID of a table reference.
Used by Expr::Column and Expr::RowId to refer to a table. E.g. in ‘SELECT * FROM t UNION ALL SELECT * FROM t’, there are two table references, so there are two TableInternalIds.
FIXME: rename this to TableReferenceId.
Trait Implementations§
Source§impl AddAssign<usize> for TableInternalId
impl AddAssign<usize> for TableInternalId
Source§fn add_assign(&mut self, rhs: usize)
fn add_assign(&mut self, rhs: usize)
Performs the
+= operation. Read moreSource§impl Clone for TableInternalId
impl Clone for TableInternalId
Source§fn clone(&self) -> TableInternalId
fn clone(&self) -> TableInternalId
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 moreimpl Copy for TableInternalId
Source§impl Debug for TableInternalId
impl Debug for TableInternalId
Source§impl Default for TableInternalId
impl Default for TableInternalId
Source§impl Display for TableInternalId
impl Display for TableInternalId
impl Eq for TableInternalId
Source§impl From<TableInternalId> for usize
impl From<TableInternalId> for usize
Source§fn from(value: TableInternalId) -> Self
fn from(value: TableInternalId) -> Self
Converts to this type from the input type.
Source§impl From<usize> for TableInternalId
impl From<usize> for TableInternalId
Source§impl PartialEq for TableInternalId
impl PartialEq for TableInternalId
Source§fn eq(&self, other: &TableInternalId) -> bool
fn eq(&self, other: &TableInternalId) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TableInternalId
Auto Trait Implementations§
impl Freeze for TableInternalId
impl RefUnwindSafe for TableInternalId
impl Send for TableInternalId
impl Sync for TableInternalId
impl Unpin for TableInternalId
impl UnsafeUnpin for TableInternalId
impl UnwindSafe for TableInternalId
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.