Trait tusk_rs::query::PostgresWriteFields

source ·
pub trait PostgresWriteFields {
    // Required method
    fn write_fields() -> &'static [&'static str];
}
Expand description

A trait for defining fields to write to in Postgres. This is required for all Tusk database operations.

Unlike PostgresReadFields, this trait returns static string slices instead of structs. Because the struct data is not needed to perform writes, this improves performance.

Required Methods§

source

fn write_fields() -> &'static [&'static str]

Object Safety§

This trait is not object safe.

Implementors§