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

Required Methods§

Implementations on Foreign Types§

§

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

§

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

Implementors§

§

impl IntoColumnRef for ColumnRef

§

impl<T> IntoColumnRef for Twhere T: 'static + IntoIden,