Trait ToField

Source
pub trait ToField {
    // Required method
    fn to_field<N: AsRef<str>>(self, name: N) -> Field;
}

Required Methods§

Source

fn to_field<N: AsRef<str>>(self, name: N) -> Field

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.

Implementations on Foreign Types§

Source§

impl ToField for &DeltaBigDecimal

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl ToField for &DeltaBigInt

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl ToField for &DeltaBool

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl ToField for &DeltaBytes

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl ToField for &DeltaInt32

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl ToField for &DeltaInt64

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl ToField for &DeltaString

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl<T: AsString> ToField for (Option<T>, T)

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl<T: AsString> ToField for (T, Option<T>)

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Source§

impl<T: AsString> ToField for (T, T)

Source§

fn to_field<N: AsRef<str>>(self, name: N) -> Field

Implementors§