Skip to main content

ColumnRef

Trait ColumnRef 

Source
pub trait ColumnRef {
    // Required methods
    fn name(&self) -> &'static str;
    fn table(&self) -> &'static str;
}

Required Methods§

Source

fn name(&self) -> &'static str

Source

fn table(&self) -> &'static str

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> ColumnRef for Column<T>