pub struct JoinColumn {
pub local: String,
pub foreign: String,
}Expand description
A single column pair in a join condition.
Fields§
§local: StringColumn name on the source (local) table.
foreign: StringColumn name on the target (foreign) table.
Trait Implementations§
Source§impl Clone for JoinColumn
impl Clone for JoinColumn
Source§fn clone(&self) -> JoinColumn
fn clone(&self) -> JoinColumn
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 JoinColumn
impl Debug for JoinColumn
impl Eq for JoinColumn
Source§impl PartialEq for JoinColumn
impl PartialEq for JoinColumn
impl StructuralPartialEq for JoinColumn
Auto Trait Implementations§
impl Freeze for JoinColumn
impl RefUnwindSafe for JoinColumn
impl Send for JoinColumn
impl Sync for JoinColumn
impl Unpin for JoinColumn
impl UnsafeUnpin for JoinColumn
impl UnwindSafe for JoinColumn
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