pub trait MapNullable {
type Output;
}Expand description
Flip every table already in a scope to MaybeNull. Used by RIGHT/FULL
JOIN, which must retroactively make every previously-joined table
nullable (mirrors Drizzle’s AppendToNullabilityMap), before adding the
newly-joined table’s own slot.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".