toasty_core/stmt/
association.rs

1use super::{Path, Query};
2
3#[derive(Debug, Clone, PartialEq)]
4pub struct Association {
5    /// The association source
6    pub source: Box<Query>,
7
8    /// How to traverse fields from the source to get to the target
9    pub path: Path,
10}