pub struct ScalarLinkHop {
pub table: String,
pub key_col: String,
pub out_col: String,
}Expand description
One resolved hop of a scalar link path: look the incoming FK value up by
key_col in table, then read out_col (the next hop’s FK column, or the
final target column on the last hop).
Fields§
§table: String§key_col: String§out_col: StringTrait Implementations§
Source§impl Clone for ScalarLinkHop
impl Clone for ScalarLinkHop
Source§fn clone(&self) -> ScalarLinkHop
fn clone(&self) -> ScalarLinkHop
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 moreAuto Trait Implementations§
impl Freeze for ScalarLinkHop
impl RefUnwindSafe for ScalarLinkHop
impl Send for ScalarLinkHop
impl Sync for ScalarLinkHop
impl Unpin for ScalarLinkHop
impl UnsafeUnpin for ScalarLinkHop
impl UnwindSafe for ScalarLinkHop
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