Skip to main content

IntoConflictValueClause

Trait IntoConflictValueClause 

Source
pub trait IntoConflictValueClause: Sealed { }
Expand description

Represents a type that can be converted into a value clause for an ON CONFLICT statement.

This trait is sealed and cannot be implemented for types outside of Diesel, and may be used to constrain generic parameters.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<Inner, Tab> IntoConflictValueClause for ValuesClause<Inner, Tab>

Source§

impl<V, Tab, QId, const STATIC_QUERY_ID: bool> IntoConflictValueClause for BatchInsert<V, Tab, QId, STATIC_QUERY_ID>