Skip to main content

UpdateSpec

Trait UpdateSpec 

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

Runtime contract implemented by executable update 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, V> UpdateSpec for UpdateMany<S, T, V>
where S: SchemaAccess, T: UpdateManyModel<Schema = S, Variables = V> + Sync, V: QueryVariableSet + Sync,