pub struct PhysicalTable {
pub name: TableName,
pub columns: Vec<PhysicalColumn>,
pub indexes: Vec<PhysicalIndex>,
}Expand description
A normalized provider-observed table.
Fields§
§name: TableNameObserved table name.
columns: Vec<PhysicalColumn>Observed columns.
indexes: Vec<PhysicalIndex>Observed indexes.
Trait Implementations§
Source§impl Clone for PhysicalTable
impl Clone for PhysicalTable
Source§fn clone(&self) -> PhysicalTable
fn clone(&self) -> PhysicalTable
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 PhysicalTable
impl Debug for PhysicalTable
impl Eq for PhysicalTable
Source§impl Ord for PhysicalTable
impl Ord for PhysicalTable
Source§fn cmp(&self, other: &PhysicalTable) -> Ordering
fn cmp(&self, other: &PhysicalTable) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§fn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
Source§impl PartialEq for PhysicalTable
impl PartialEq for PhysicalTable
Source§impl PartialOrd for PhysicalTable
impl PartialOrd for PhysicalTable
impl StructuralPartialEq for PhysicalTable
Auto Trait Implementations§
impl Freeze for PhysicalTable
impl RefUnwindSafe for PhysicalTable
impl Send for PhysicalTable
impl Sync for PhysicalTable
impl Unpin for PhysicalTable
impl UnsafeUnpin for PhysicalTable
impl UnwindSafe for PhysicalTable
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