2017-03-08 19:21:20 -06:00
|
|
|
// rustfmt-fn_args_layout: Block
|
|
|
|
// rustfmt-where_style: Rfc
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode, rule: &Rule, args: &[Arg], shape: &Shape)
|
|
|
|
where
|
|
|
|
T: FOo,
|
|
|
|
U: Bar,
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(node: &CompoundNode, rule: &Rule, args: &[Arg], shape: &Shape)
|
|
|
|
where
|
|
|
|
T: FOo,
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(
|
|
|
|
node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
|
|
|
shape: &Shape,
|
2017-03-08 19:47:29 -06:00
|
|
|
shape: &Shape,
|
2017-03-08 19:21:20 -06:00
|
|
|
) where
|
|
|
|
T: FOo,
|
|
|
|
U: Bar,
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(
|
|
|
|
node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
|
|
|
shape: &Shape,
|
2017-03-08 19:47:29 -06:00
|
|
|
shape: &Shape,
|
2017-03-08 19:21:20 -06:00
|
|
|
) where
|
|
|
|
T: FOo,
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(
|
|
|
|
node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
2017-03-08 19:47:29 -06:00
|
|
|
shape: &Shape,
|
2017-03-08 19:21:20 -06:00
|
|
|
) -> Option<String>
|
|
|
|
where
|
|
|
|
T: FOo,
|
|
|
|
U: Bar,
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reflow_list_node_with_rule(
|
|
|
|
node: &CompoundNode,
|
|
|
|
rule: &Rule,
|
|
|
|
args: &[Arg],
|
2017-03-08 19:47:29 -06:00
|
|
|
shape: &Shape,
|
2017-03-08 19:21:20 -06:00
|
|
|
) -> Option<String>
|
|
|
|
where
|
|
|
|
T: FOo,
|
|
|
|
{
|
|
|
|
let mut effects = HashMap::new();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Test {
|
|
|
|
fn very_long_method_name<F>(self, f: F) -> MyVeryLongReturnType
|
|
|
|
where
|
|
|
|
F: FnMut(Self::Item) -> bool;
|
|
|
|
|
|
|
|
fn exactly_100_chars1<F>(self, f: F) -> MyVeryLongReturnType
|
|
|
|
where
|
|
|
|
F: FnMut(Self::Item) -> bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn very_long_function_name<F>(very_long_argument: F) -> MyVeryLongReturnType
|
|
|
|
where
|
2017-03-09 14:45:26 -06:00
|
|
|
F: FnMut(Self::Item) -> bool
|
2017-03-08 19:21:20 -06:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
struct VeryLongTupleStructName<A, B, C, D, E>(LongLongTypename, LongLongTypename, i32, i32)
|
|
|
|
where
|
|
|
|
A: LongTrait;
|
|
|
|
|
|
|
|
struct Exactly100CharsToSemicolon<A, B, C, D, E>(LongLongTypename, i32, i32)
|
|
|
|
where
|
|
|
|
A: LongTrait1234;
|
|
|
|
|
|
|
|
struct AlwaysOnNextLine<LongLongTypename, LongTypename, A, B, C, D, E, F>
|
|
|
|
where
|
|
|
|
A: LongTrait,
|
|
|
|
{
|
|
|
|
x: i32,
|
|
|
|
}
|