pub trait IntoColumnRef {
    // Required method
    fn into_column_ref(self) -> ColumnRef;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<S, T> IntoColumnRef for (S, T)
where S: IntoIden + 'static, T: IntoIden + 'static,

source§

impl<S, T, U> IntoColumnRef for (S, T, U)
where S: IntoIden + 'static, T: IntoIden + 'static, U: IntoIden + 'static,

source§

impl<T> IntoColumnRef for (T, Asterisk)
where T: IntoIden + 'static,

Implementors§