pub struct Correlation {
pub parent_field: Vec<Box<str>>,
pub child_field: Vec<Box<str>>,
}Expand description
The join key pair (Correlation, ast.ts:245-248). parent_field[i] on the
parent correlates with child_field[i] on the child; both non-empty, same length.
Fields§
§parent_field: Vec<Box<str>>Column name(s) on the parent table.
child_field: Vec<Box<str>>Column name(s) on the child (subquery) table.
Trait Implementations§
Source§impl Clone for Correlation
impl Clone for Correlation
Source§fn clone(&self) -> Correlation
fn clone(&self) -> Correlation
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 moreSource§impl Debug for Correlation
impl Debug for Correlation
Source§impl<'de> Deserialize<'de> for Correlation
impl<'de> Deserialize<'de> for Correlation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Correlation
impl PartialEq for Correlation
Source§impl Serialize for Correlation
impl Serialize for Correlation
impl StructuralPartialEq for Correlation
Auto Trait Implementations§
impl Freeze for Correlation
impl RefUnwindSafe for Correlation
impl Send for Correlation
impl Sync for Correlation
impl Unpin for Correlation
impl UnsafeUnpin for Correlation
impl UnwindSafe for Correlation
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