2017-01-16 14:50:27 +13:00
|
|
|
// rustfmt-normalize_comments: true
|
2015-11-10 08:03:01 +13:00
|
|
|
// rustfmt-wrap_comments: true
|
2015-06-23 15:58:58 +02:00
|
|
|
|
|
|
|
/// A Doc comment
|
|
|
|
#[AnAttribute]
|
|
|
|
pub struct Foo {
|
2018-05-14 16:25:10 +12:00
|
|
|
#[rustfmt::skip]
|
2015-06-23 15:58:58 +02:00
|
|
|
f : SomeType, // Comment beside a field
|
|
|
|
f: SomeType, // Comment beside a field
|
|
|
|
// Comment on a field
|
|
|
|
#[AnAttribute]
|
|
|
|
g: SomeOtherType,
|
|
|
|
/// A doc comment on a field
|
|
|
|
h: AThirdType,
|
|
|
|
pub i: TypeForPublicField
|
|
|
|
}
|
|
|
|
|
2020-11-27 21:09:33 -06:00
|
|
|
// Destructuring
|
|
|
|
fn foo() {
|
|
|
|
S { x: 5,
|
|
|
|
..};
|
|
|
|
Struct {..} = Struct { a: 1, b: 4 };
|
|
|
|
Struct { a, .. } = Struct { a: 1, b: 2, c: 3};
|
|
|
|
TupleStruct(a,.., b) = TupleStruct(1, 2);
|
|
|
|
TupleStruct( ..) = TupleStruct(3, 4);
|
|
|
|
TupleStruct(aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa, .., bbbbbbbbbbbbbbbbbbbbbbbbbbbbbb) = TupleStruct(1, 2);
|
|
|
|
}
|
|
|
|
|
2017-09-05 01:04:31 +09:00
|
|
|
// #1095
|
|
|
|
struct S<T: /* comment */> {
|
|
|
|
t: T,
|
|
|
|
}
|
|
|
|
|
2017-05-27 09:36:25 +09:00
|
|
|
// #1029
|
|
|
|
pub struct Foo {
|
|
|
|
#[doc(hidden)]
|
|
|
|
// This will NOT get deleted!
|
|
|
|
bar: String, // hi
|
|
|
|
}
|
|
|
|
|
|
|
|
// #1029
|
|
|
|
struct X {
|
|
|
|
// `x` is an important number.
|
|
|
|
#[allow(unused)] // TODO: use
|
|
|
|
x: u32,
|
|
|
|
}
|
|
|
|
|
|
|
|
// #410
|
|
|
|
#[allow(missing_docs)]
|
|
|
|
pub struct Writebatch<K: Key> {
|
|
|
|
#[allow(dead_code)] //only used for holding the internal pointer
|
|
|
|
writebatch: RawWritebatch,
|
|
|
|
marker: PhantomData<K>,
|
|
|
|
}
|
|
|
|
|
2015-06-23 15:58:58 +02:00
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
struct NewType(Type, OtherType);
|
|
|
|
|
|
|
|
struct
|
|
|
|
NewInt <T: Copy>(pub i32, SomeType /* inline comment */, T /* sup */
|
|
|
|
|
|
|
|
|
|
|
|
);
|
|
|
|
|
|
|
|
struct Qux<'a,
|
|
|
|
N: Clone + 'a,
|
|
|
|
E: Clone + 'a,
|
|
|
|
G: Labeller<'a, N, E> + GraphWalk<'a, N, E>,
|
|
|
|
W: Write + Copy>
|
|
|
|
(
|
|
|
|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA, // Comment
|
|
|
|
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB,
|
2015-11-30 23:12:50 +01:00
|
|
|
#[AnAttr]
|
2015-06-23 15:58:58 +02:00
|
|
|
// Comment
|
|
|
|
/// Testdoc
|
|
|
|
G,
|
|
|
|
pub W,
|
|
|
|
);
|
|
|
|
|
|
|
|
struct Tuple(/*Comment 1*/ AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,
|
|
|
|
/* Comment 2 */ BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB,);
|
|
|
|
|
2019-02-19 02:56:42 +00:00
|
|
|
// With a where-clause and generics.
|
2015-06-23 15:58:58 +02:00
|
|
|
pub struct Foo<'a, Y: Baz>
|
|
|
|
where X: Whatever
|
|
|
|
{
|
|
|
|
f: SomeType, // Comment beside a field
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz {
|
2015-09-02 14:11:19 +12:00
|
|
|
|
2015-06-23 15:58:58 +02:00
|
|
|
a: A, // Comment A
|
|
|
|
b: B, // Comment B
|
|
|
|
c: C, // Comment C
|
2015-09-02 14:11:19 +12:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz {
|
|
|
|
a: A, // Comment A
|
|
|
|
|
|
|
|
b: B, // Comment B
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
c: C, // Comment C
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz {
|
|
|
|
|
|
|
|
a: A,
|
|
|
|
|
|
|
|
b: B,
|
|
|
|
c: C,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
d: D
|
|
|
|
|
2015-06-23 15:58:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Baz
|
|
|
|
{
|
|
|
|
// Comment A
|
|
|
|
a: A,
|
2015-09-02 14:11:19 +12:00
|
|
|
|
2015-06-23 15:58:58 +02:00
|
|
|
// Comment B
|
|
|
|
b: B,
|
|
|
|
// Comment C
|
|
|
|
c: C,}
|
|
|
|
|
|
|
|
// Will this be a one-liner?
|
|
|
|
struct Tuple(
|
|
|
|
A, //Comment
|
|
|
|
B
|
|
|
|
);
|
2015-08-21 16:28:32 +02:00
|
|
|
|
|
|
|
pub struct State<F: FnMut() -> time::Timespec> { now: F }
|
|
|
|
|
|
|
|
pub struct State<F: FnMut() -> ()> { now: F }
|
|
|
|
|
|
|
|
pub struct State<F: FnMut()> { now: F }
|
2015-09-25 16:53:44 +02:00
|
|
|
|
2017-11-01 07:33:55 +01:00
|
|
|
struct Palette { /// A map of indices in the palette to a count of pixels in approximately that color
|
2015-09-25 16:53:44 +02:00
|
|
|
foo: i32}
|
2015-10-07 19:23:07 -04:00
|
|
|
|
|
|
|
// Splitting a single line comment into a block previously had a misalignment
|
|
|
|
// when the field had attributes
|
|
|
|
struct FieldsWithAttributes {
|
|
|
|
// Pre Comment
|
2018-05-14 16:25:10 +12:00
|
|
|
#[rustfmt::skip] pub host:String, // Post comment BBBBBBBBBBBBBB BBBBBBBBBBBBBBBB BBBBBBBBBBBBBBBB BBBBBBBBBBBBBBBBB BBBBBBBBBBB
|
2015-10-07 19:23:07 -04:00
|
|
|
//Another pre comment
|
|
|
|
#[attr1]
|
|
|
|
#[attr2] pub id: usize // CCCCCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCC CCCCCCCCCCCCCCCCCC CCCCCCCCCCCCCC CCCCCCCCCCCC
|
|
|
|
}
|
2015-10-19 00:25:38 +02:00
|
|
|
|
|
|
|
struct Deep {
|
|
|
|
deeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeep: node::Handle<IdRef<'id, Node<K, V>>,
|
|
|
|
Type,
|
|
|
|
NodeType>,
|
|
|
|
}
|
2015-11-09 19:00:04 +13:00
|
|
|
|
|
|
|
struct Foo<T>(T);
|
|
|
|
struct Foo<T>(T) where T: Copy, T: Eq;
|
|
|
|
struct Foo<T>(TTTTTTTTTTTTTTTTT, UUUUUUUUUUUUUUUUUUUUUUUU, TTTTTTTTTTTTTTTTTTT, UUUUUUUUUUUUUUUUUUU);
|
|
|
|
struct Foo<T>(TTTTTTTTTTTTTTTTTT, UUUUUUUUUUUUUUUUUUUUUUUU, TTTTTTTTTTTTTTTTTTT) where T: PartialEq;
|
|
|
|
struct Foo<T>(TTTTTTTTTTTTTTTTT, UUUUUUUUUUUUUUUUUUUUUUUU, TTTTTTTTTTTTTTTTTTTTT) where T: PartialEq;
|
|
|
|
struct Foo<T>(TTTTTTTTTTTTTTTTT, UUUUUUUUUUUUUUUUUUUUUUUU, TTTTTTTTTTTTTTTTTTT, UUUUUUUUUUUUUUUUUUU) where T: PartialEq;
|
|
|
|
struct Foo<T>(TTTTTTTTTTTTTTTTT, // Foo
|
|
|
|
UUUUUUUUUUUUUUUUUUUUUUUU /* Bar */,
|
|
|
|
// Baz
|
|
|
|
TTTTTTTTTTTTTTTTTTT,
|
|
|
|
// Qux (FIXME #572 - doc comment)
|
|
|
|
UUUUUUUUUUUUUUUUUUU);
|
2015-11-13 14:31:20 +01:00
|
|
|
|
|
|
|
mod m {
|
|
|
|
struct X<T> where T: Sized {
|
|
|
|
a: T,
|
|
|
|
}
|
|
|
|
}
|
2015-11-22 22:55:57 +01:00
|
|
|
|
|
|
|
struct Foo<T>(TTTTTTTTTTTTTTTTTTT,
|
|
|
|
/// Qux
|
|
|
|
UUUUUUUUUUUUUUUUUUU);
|
2015-12-06 01:11:26 +01:00
|
|
|
|
|
|
|
struct Issue677 {
|
|
|
|
pub ptr: *const libc::c_void,
|
|
|
|
pub trace: fn( obj:
|
|
|
|
*const libc::c_void, tracer : *mut JSTracer ),
|
|
|
|
}
|
2016-04-12 07:05:54 +12:00
|
|
|
|
|
|
|
struct Foo {}
|
2017-01-09 12:11:12 +09:00
|
|
|
struct Foo {
|
|
|
|
}
|
|
|
|
struct Foo {
|
|
|
|
// comment
|
|
|
|
}
|
|
|
|
struct Foo {
|
|
|
|
// trailing space ->
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
struct Foo { /* comment */ }
|
2017-04-14 22:39:20 +09:00
|
|
|
struct Foo( /* comment */ );
|
2017-03-29 20:15:27 +09:00
|
|
|
|
|
|
|
struct LongStruct {
|
|
|
|
a: A,
|
|
|
|
the_quick_brown_fox_jumps_over_the_lazy_dog:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Deep {
|
|
|
|
deeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeep: node::Handle<IdRef<'id, Node<Key, Value>>,
|
|
|
|
Type,
|
|
|
|
NodeType>,
|
|
|
|
}
|
2017-03-31 21:57:29 +09:00
|
|
|
|
|
|
|
struct Foo<C=()>(String);
|
2017-05-04 13:52:35 +09:00
|
|
|
|
|
|
|
// #1364
|
|
|
|
fn foo() {
|
|
|
|
convex_shape.set_point(0, &Vector2f { x: 400.0, y: 100.0 });
|
|
|
|
convex_shape.set_point(1, &Vector2f { x: 500.0, y: 70.0 });
|
|
|
|
convex_shape.set_point(2, &Vector2f { x: 450.0, y: 100.0 });
|
|
|
|
convex_shape.set_point(3, &Vector2f { x: 580.0, y: 150.0 });
|
|
|
|
}
|
2017-07-06 01:03:20 +09:00
|
|
|
|
2017-07-07 09:01:14 +09:00
|
|
|
// Vertical alignment
|
2017-07-06 01:03:20 +09:00
|
|
|
struct Foo {
|
|
|
|
aaaaa: u32, // a
|
|
|
|
|
|
|
|
b: u32, // b
|
|
|
|
cc: u32, // cc
|
|
|
|
|
|
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx: u32, // 1
|
|
|
|
yy: u32, // comment2
|
|
|
|
zzz: u32, // comment3
|
|
|
|
|
|
|
|
aaaaaa: u32, // comment4
|
|
|
|
bb: u32, // comment5
|
|
|
|
// separate
|
|
|
|
dd: u32, // comment7
|
|
|
|
c: u32, // comment6
|
|
|
|
|
|
|
|
aaaaaaa: u32, /* multi
|
|
|
|
* line
|
|
|
|
* comment
|
|
|
|
*/
|
|
|
|
b: u32, // hi
|
2017-07-07 09:01:14 +09:00
|
|
|
|
|
|
|
do_not_push_this_comment1: u32, // comment1
|
|
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx: u32, // 2
|
|
|
|
please_do_not_push_this_comment3: u32, // comment3
|
|
|
|
|
|
|
|
do_not_push_this_comment1: u32, // comment1
|
|
|
|
// separate
|
|
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx: u32, // 2
|
|
|
|
please_do_not_push_this_comment3: u32, // comment3
|
|
|
|
|
|
|
|
do_not_push_this_comment1: u32, // comment1
|
|
|
|
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx: u32, // 2
|
|
|
|
// separate
|
|
|
|
please_do_not_push_this_comment3: u32, // comment3
|
2017-07-06 01:03:20 +09:00
|
|
|
}
|
2017-07-25 18:51:29 +09:00
|
|
|
|
|
|
|
// structs with long identifier
|
|
|
|
struct Loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong {}
|
|
|
|
struct Looooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong {}
|
|
|
|
struct Loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong {}
|
|
|
|
struct Loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong { x: i32 }
|
2017-11-03 22:25:30 +09:00
|
|
|
|
|
|
|
// structs with visibility, do not duplicate visibility (#2110).
|
2017-11-03 23:38:32 +09:00
|
|
|
pub(in self) struct Foo{}
|
|
|
|
pub(super) struct Foo{}
|
|
|
|
pub(crate) struct Foo{}
|
2017-11-03 22:25:30 +09:00
|
|
|
pub(in self) struct Foo();
|
|
|
|
pub(super) struct Foo();
|
|
|
|
pub(crate) struct Foo();
|
2017-11-08 11:52:14 +09:00
|
|
|
|
|
|
|
// #2125
|
|
|
|
pub struct ReadinessCheckRegistry(Mutex<HashMap<Arc<String>, Box<Fn() -> ReadinessCheck + Sync + Send>>>);
|
2017-11-13 08:01:52 +09:00
|
|
|
|
|
|
|
// #2144 unit struct with generics
|
|
|
|
struct MyBox<T:?Sized>;
|
2017-11-13 11:06:09 +09:00
|
|
|
struct MyBoxx<T, S> where T: ?Sized, S: Clone;
|
2018-02-05 08:38:53 +09:00
|
|
|
|
|
|
|
// #2208
|
|
|
|
struct Test {
|
|
|
|
/// foo
|
|
|
|
#[serde(default)]
|
|
|
|
pub join: Vec<String>,
|
|
|
|
#[serde(default)] pub tls: bool,
|
|
|
|
}
|
2018-06-30 19:20:47 +09:00
|
|
|
|
|
|
|
// #2818
|
|
|
|
struct Paren((i32)) where i32: Trait;
|
|
|
|
struct Parens((i32, i32)) where i32: Trait;
|