2017-04-12 11:14:54 -05:00
|
|
|
#![crate_name = "foo"]
|
|
|
|
|
|
|
|
pub trait Expression {
|
|
|
|
type SqlType;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait AsExpression<T> {
|
|
|
|
type Expression: Expression<SqlType = T>;
|
|
|
|
fn as_expression(self) -> Self::Expression;
|
|
|
|
}
|
|
|
|
|
2024-06-21 07:03:08 -05:00
|
|
|
//@ has foo/type.AsExprOf.html
|
|
|
|
//@ has - '//pre[@class="rust item-decl"]' 'type AsExprOf<Item, Type> = <Item as AsExpression<Type>>::Expression;'
|
2017-04-12 11:14:54 -05:00
|
|
|
pub type AsExprOf<Item, Type> = <Item as AsExpression<Type>>::Expression;
|