Skip to main content

InsertSpec

Trait InsertSpec 

Source
pub trait InsertSpec: Send + Sync {
    type Output: Send + 'static;
}
Expand description

Runtime contract implemented by executable insert values.

Required Associated Types§

Source

type Output: Send + 'static

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

impl<S, T> InsertSpec for Insert<S, T>
where S: SchemaAccess, T: InsertModel<Schema = S> + Sync,