Document rustc_ast::FnHeader fields
This commit is contained in:
parent
3c7c694e73
commit
157211ff2f
1 changed files with 4 additions and 0 deletions
|
@ -2736,9 +2736,13 @@ impl Extern {
|
||||||
/// included in this struct (e.g., `async unsafe fn` or `const extern "C" fn`).
|
/// included in this struct (e.g., `async unsafe fn` or `const extern "C" fn`).
|
||||||
#[derive(Clone, Copy, Encodable, Decodable, Debug)]
|
#[derive(Clone, Copy, Encodable, Decodable, Debug)]
|
||||||
pub struct FnHeader {
|
pub struct FnHeader {
|
||||||
|
/// The `unsafe` keyword, if any
|
||||||
pub unsafety: Unsafe,
|
pub unsafety: Unsafe,
|
||||||
|
/// The `async` keyword, if any
|
||||||
pub asyncness: Async,
|
pub asyncness: Async,
|
||||||
|
/// The `const` keyword, if any
|
||||||
pub constness: Const,
|
pub constness: Const,
|
||||||
|
/// The `extern` keyword and corresponding ABI string, if any
|
||||||
pub ext: Extern,
|
pub ext: Extern,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue