2017-06-10 06:37:34 -05:00
|
|
|
// #1357
|
|
|
|
impl<'a, Select, From, Distinct, Where, Order, Limit, Offset, Groupby, DB> InternalBoxedDsl<'a, DB>
|
2017-06-11 09:27:02 -05:00
|
|
|
for SelectStatement<Select, From, Distinct, Where, Order, Limit, Offset, GroupBy>
|
2017-06-10 06:37:34 -05:00
|
|
|
where
|
|
|
|
DB: Backend,
|
|
|
|
Select: QueryFragment<DB> + SelectableExpression<From> + 'a,
|
|
|
|
Distinct: QueryFragment<DB> + 'a,
|
|
|
|
Where: Into<Option<Box<QueryFragment<DB> + 'a>>>,
|
|
|
|
Order: QueryFragment<DB> + 'a,
|
|
|
|
Limit: QueryFragment<DB> + 'a,
|
|
|
|
Offset: QueryFragment<DB> + 'a,
|
|
|
|
{
|
|
|
|
type Output = BoxedSelectStatement<'a, Select::SqlTypeForSelect, From, DB>;
|
|
|
|
|
|
|
|
fn internal_into_boxed(self) -> Self::Output {
|
|
|
|
BoxedSelectStatement::new(
|
|
|
|
Box::new(self.select),
|
|
|
|
self.from,
|
|
|
|
Box::new(self.distinct),
|
|
|
|
self.where_clause.into(),
|
|
|
|
Box::new(self.order),
|
|
|
|
Box::new(self.limit),
|
|
|
|
Box::new(self.offset),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// #1369
|
|
|
|
impl<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName> Foo
|
2018-01-01 22:50:43 -06:00
|
|
|
for Bar
|
|
|
|
{
|
2017-06-10 06:37:34 -05:00
|
|
|
fn foo() {}
|
|
|
|
}
|
|
|
|
impl Foo<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName>
|
2018-01-01 22:50:43 -06:00
|
|
|
for Bar
|
|
|
|
{
|
2017-06-10 06:37:34 -05:00
|
|
|
fn foo() {}
|
|
|
|
}
|
2018-03-07 00:49:15 -06:00
|
|
|
impl<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName>
|
|
|
|
Foo<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName>
|
2018-01-01 22:50:43 -06:00
|
|
|
for Bar
|
|
|
|
{
|
2017-06-10 06:37:34 -05:00
|
|
|
fn foo() {}
|
|
|
|
}
|
|
|
|
impl<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName> Foo
|
2017-06-11 09:27:02 -05:00
|
|
|
for Bar<
|
|
|
|
ExcessivelyLongGenericName,
|
|
|
|
ExcessivelyLongGenericName,
|
|
|
|
AnotherExcessivelyLongGenericName,
|
2018-03-08 04:08:56 -06:00
|
|
|
>
|
|
|
|
{
|
2017-06-10 06:37:34 -05:00
|
|
|
fn foo() {}
|
|
|
|
}
|
|
|
|
impl Foo<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName>
|
2017-06-11 09:27:02 -05:00
|
|
|
for Bar<
|
|
|
|
ExcessivelyLongGenericName,
|
|
|
|
ExcessivelyLongGenericName,
|
|
|
|
AnotherExcessivelyLongGenericName,
|
2018-03-08 04:08:56 -06:00
|
|
|
>
|
|
|
|
{
|
2017-06-10 06:37:34 -05:00
|
|
|
fn foo() {}
|
|
|
|
}
|
2018-03-07 00:49:15 -06:00
|
|
|
impl<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName>
|
|
|
|
Foo<ExcessivelyLongGenericName, ExcessivelyLongGenericName, AnotherExcessivelyLongGenericName>
|
2017-06-11 09:27:02 -05:00
|
|
|
for Bar<
|
|
|
|
ExcessivelyLongGenericName,
|
|
|
|
ExcessivelyLongGenericName,
|
|
|
|
AnotherExcessivelyLongGenericName,
|
2018-03-08 04:08:56 -06:00
|
|
|
>
|
|
|
|
{
|
2017-06-10 06:37:34 -05:00
|
|
|
fn foo() {}
|
|
|
|
}
|
2017-06-17 12:04:03 -05:00
|
|
|
|
|
|
|
// #1689
|
|
|
|
impl<M, S, F, X> SubSelectDirect<M, S, F, X>
|
|
|
|
where
|
|
|
|
M: select::Selector,
|
|
|
|
S: event::Stream,
|
2017-11-18 00:45:15 -06:00
|
|
|
F: for<'t> FnMut(transform::Api<'t, Stream<ContentStream<S>>>) -> transform::Api<'t, X>,
|
2017-06-17 12:04:03 -05:00
|
|
|
X: event::Stream,
|
2018-06-05 20:56:07 -05:00
|
|
|
{}
|