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: IntoIden + 'static, T: IntoIden + 'static,

source§

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

Implementors§

source§

impl IntoTableRef for TableRef

source§

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