pub trait IntoTypeRef {
    // Required method
    fn into_type_ref(self) -> TypeRef;
}
Available on crate feature backend-postgres only.

Required Methods§

Implementations on Foreign Types§

source§

impl<A, B> IntoTypeRef for (A, B)
where A: IntoIden, B: IntoIden,

source§

impl<A, B, C> IntoTypeRef for (A, B, C)
where A: IntoIden, B: IntoIden, C: IntoIden,

Implementors§