pub struct JoinSpec {
pub join_type: String,
pub table: String,
pub on_clause: String,
}Expand description
A JOIN specification for SQL generation.
Fields§
§join_type: StringJOIN type: “INNER”, “LEFT”, “RIGHT”, “FULL”, “CROSS”
table: StringThe table to join.
on_clause: StringThe ON condition. Empty for CROSS JOIN.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for JoinSpec
impl RefUnwindSafe for JoinSpec
impl Send for JoinSpec
impl Sync for JoinSpec
impl Unpin for JoinSpec
impl UnsafeUnpin for JoinSpec
impl UnwindSafe for JoinSpec
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