pub trait TypedUpdateBuilder: Sized {
type Output: UpdateData;
// Required method
fn build(self) -> Self::Output;
}Expand description
Builder for updating records with a fluent API.
Required Associated Types§
Sourcetype Output: UpdateData
type Output: UpdateData
The output type.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.