pub struct DBMVJoin {
pub name: String,
pub source: String,
pub on: Option<String>,
pub using: Vec<String>,
pub joins: Vec<DBMVJoin>,
}Expand description
Join definition (supports recursive nesting for snowflake schemas)
Fields§
§name: StringJoin alias name
source: StringFully qualified source table for the join
on: Option<String>Join condition expression (e.g., “source.customer_id = customers.id”)
using: Vec<String>Column names for equi-join (alternative to on)
joins: Vec<DBMVJoin>Nested joins (for snowflake schema patterns)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DBMVJoin
impl<'de> Deserialize<'de> for DBMVJoin
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
impl StructuralPartialEq for DBMVJoin
Auto Trait Implementations§
impl Freeze for DBMVJoin
impl RefUnwindSafe for DBMVJoin
impl Send for DBMVJoin
impl Sync for DBMVJoin
impl Unpin for DBMVJoin
impl UnsafeUnpin for DBMVJoin
impl UnwindSafe for DBMVJoin
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