pub struct TableSqlRef {
pub name: &'static str,
pub column_names: &'static [&'static str],
}Expand description
Table fields needed by SQL rendering.
Fields§
§name: &'static str§column_names: &'static [&'static str]Implementations§
Source§impl TableSqlRef
impl TableSqlRef
pub const fn from_table_ref(table: TableRef) -> Self
pub const fn from_table_ref_ref(table: &TableRef) -> Self
Trait Implementations§
Source§impl Clone for TableSqlRef
impl Clone for TableSqlRef
Source§fn clone(&self) -> TableSqlRef
fn clone(&self) -> TableSqlRef
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 TableSqlRef
Source§impl Debug for TableSqlRef
impl Debug for TableSqlRef
impl Eq for TableSqlRef
Source§impl From<&TableRef> for TableSqlRef
impl From<&TableRef> for TableSqlRef
Source§impl From<TableRef> for TableSqlRef
impl From<TableRef> for TableSqlRef
Source§impl PartialEq for TableSqlRef
impl PartialEq for TableSqlRef
impl StructuralPartialEq for TableSqlRef
Auto Trait Implementations§
impl Freeze for TableSqlRef
impl RefUnwindSafe for TableSqlRef
impl Send for TableSqlRef
impl Sync for TableSqlRef
impl Unpin for TableSqlRef
impl UnsafeUnpin for TableSqlRef
impl UnwindSafe for TableSqlRef
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