TypedUpdateBuilder

Trait TypedUpdateBuilder 

Source
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§

Source

type Output: UpdateData

The output type.

Required Methods§

Source

fn build(self) -> Self::Output

Build the update data.

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.

Implementors§