pub struct JoinTableData<'until_build, 'post_query> {
pub join_type: JoinType,
pub table_name: &'until_build str,
pub join_alias: &'until_build str,
pub join_condition: Cow<'until_build, Condition<'post_query>>,
}
Expand description
Data of a JOIN expression.
Fields§
§join_type: JoinType
Type of the join operation
table_name: &'until_build str
Name of the join table
join_alias: &'until_build str
Alias for the join table
join_condition: Cow<'until_build, Condition<'post_query>>
Condition to apply the join on
Trait Implementations§
Source§impl<'until_build, 'post_query> Clone for JoinTableData<'until_build, 'post_query>
impl<'until_build, 'post_query> Clone for JoinTableData<'until_build, 'post_query>
Source§fn clone(&self) -> JoinTableData<'until_build, 'post_query>
fn clone(&self) -> JoinTableData<'until_build, 'post_query>
Returns a duplicate 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<'until_build, 'post_query> Freeze for JoinTableData<'until_build, 'post_query>
impl<'until_build, 'post_query> RefUnwindSafe for JoinTableData<'until_build, 'post_query>
impl<'until_build, 'post_query> Send for JoinTableData<'until_build, 'post_query>
impl<'until_build, 'post_query> Sync for JoinTableData<'until_build, 'post_query>
impl<'until_build, 'post_query> Unpin for JoinTableData<'until_build, 'post_query>
impl<'until_build, 'post_query> UnwindSafe for JoinTableData<'until_build, 'post_query>
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