pub trait IntoTableRef {
    // Required method
    fn into_table_ref(self) -> TableRef;
}

Required Methods§

Implementations on Foreign Types§

source§

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

source§

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

Implementors§

source§

impl IntoTableRef for TableRef

source§

impl<T> IntoTableRef for T
where T: 'static + IntoIden,