pub enum IsInJoinedTable {
Yes {
schema_name: String,
table_name: String,
},
No,
}
Expand description
Represents whether the column is from a joined table or not.
The available variants are:
Yes
: Represents that the column is from a joined tables. It contains the following fields:schema_name
: The name of the schema of the joined table which has the condition column (if applicable).table_name
: The name of the joined table which has the condition column.
No
: Represents that the column is not from a joined table.
Variants§
Trait Implementations§
Source§impl Clone for IsInJoinedTable
impl Clone for IsInJoinedTable
Source§fn clone(&self) -> IsInJoinedTable
fn clone(&self) -> IsInJoinedTable
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for IsInJoinedTable
impl RefUnwindSafe for IsInJoinedTable
impl Send for IsInJoinedTable
impl Sync for IsInJoinedTable
impl Unpin for IsInJoinedTable
impl UnwindSafe for IsInJoinedTable
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