File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 53
53
///
54
54
/// - [`Attribute`] — parses one attribute, allowing either outer like `#[...]`
55
55
/// or inner like `#![...]`
56
+ /// - [`Vec<Attribute>`] — parses multiple attributes, including mixed kinds in
57
+ /// any order
56
58
/// - [`Punctuated<T, P>`] — parses zero or more `T` separated by punctuation
57
59
/// `P` with optional trailing punctuation
60
+ /// - [`Vec<Arm>`] — parses arms separated by optional commas according to the
61
+ /// same grammar as the inside of a `match` expression
58
62
/// - [`Vec<Stmt>`] — parses the same as `Block::parse_within`
63
+ /// - [`Pat`], [`Box<Pat>`] — parses the same as
64
+ /// `Pat::parse_multi_with_leading_vert`
65
+ /// - [`Field`] — parses a named or unnamed struct field
59
66
///
67
+ /// [`Vec<Attribute>`]: Attribute
68
+ /// [`Vec<Arm>`]: Arm
60
69
/// [`Vec<Stmt>`]: Block::parse_within
70
+ /// [`Pat`]: Pat::parse_multi_with_leading_vert
71
+ /// [`Box<Pat>`]: Pat::parse_multi_with_leading_vert
61
72
///
62
73
/// # Panics
63
74
///
You can’t perform that action at this time.
0 commit comments