1 2 3 4 5 6 7
use crate::ast::*; /// Represents the SQL `OnConflict` structure in the AST. #[derive(Debug, Clone, PartialEq)] pub struct OnConflict { pub target: Option<ConflictTarget>, pub action: ConflictAction, }